R=mark@chromium.org
BUG=crashpad:46

Review URL: https://codereview.chromium.org/1382963002 .
This commit is contained in:
Scott Graham 2015-10-01 15:04:13 -07:00
parent ecf3b37863
commit d8769ed212
2 changed files with 5 additions and 0 deletions

View File

@ -111,5 +111,9 @@ uint64_t ThreadSnapshotMac::ThreadSpecificDataAddress() const {
return thread_specific_data_address_;
}
std::vector<const MemorySnapshot*> ThreadSnapshotMac::ExtraMemory() const {
return std::vector<const MemorySnapshot*>();
}
} // namespace internal
} // namespace crashpad

View File

@ -59,6 +59,7 @@ class ThreadSnapshotMac final : public ThreadSnapshot {
int SuspendCount() const override;
int Priority() const override;
uint64_t ThreadSpecificDataAddress() const override;
std::vector<const MemorySnapshot*> ExtraMemory() const override;
private:
#if defined(ARCH_CPU_X86_FAMILY)