From d8769ed2121d46695d3f0d82faf19b82ca1d2266 Mon Sep 17 00:00:00 2001 From: Scott Graham Date: Thu, 1 Oct 2015 15:04:13 -0700 Subject: [PATCH] mac: build fix after http://crrev.com/1364803004 R=mark@chromium.org BUG=crashpad:46 Review URL: https://codereview.chromium.org/1382963002 . --- snapshot/mac/thread_snapshot_mac.cc | 4 ++++ snapshot/mac/thread_snapshot_mac.h | 1 + 2 files changed, 5 insertions(+) diff --git a/snapshot/mac/thread_snapshot_mac.cc b/snapshot/mac/thread_snapshot_mac.cc index 0b7607ca..b042f758 100644 --- a/snapshot/mac/thread_snapshot_mac.cc +++ b/snapshot/mac/thread_snapshot_mac.cc @@ -111,5 +111,9 @@ uint64_t ThreadSnapshotMac::ThreadSpecificDataAddress() const { return thread_specific_data_address_; } +std::vector ThreadSnapshotMac::ExtraMemory() const { + return std::vector(); +} + } // namespace internal } // namespace crashpad diff --git a/snapshot/mac/thread_snapshot_mac.h b/snapshot/mac/thread_snapshot_mac.h index a59678cc..35b77bba 100644 --- a/snapshot/mac/thread_snapshot_mac.h +++ b/snapshot/mac/thread_snapshot_mac.h @@ -59,6 +59,7 @@ class ThreadSnapshotMac final : public ThreadSnapshot { int SuspendCount() const override; int Priority() const override; uint64_t ThreadSpecificDataAddress() const override; + std::vector ExtraMemory() const override; private: #if defined(ARCH_CPU_X86_FAMILY)