Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1795)

Unified Diff: base/profiler/native_stack_sampler_posix.cc

Issue 2601633002: Use a common buffer across all instances for stack-copy. (Closed)
Patch Set: make StackBuffer word aligned Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: base/profiler/native_stack_sampler_posix.cc
diff --git a/base/profiler/native_stack_sampler_posix.cc b/base/profiler/native_stack_sampler_posix.cc
index 54abb2e3d3ad72bb46b0181b65bb81c6f0b718a5..504b9b97abec5858e7f04da0ecfe809f7ffa7c8f 100644
--- a/base/profiler/native_stack_sampler_posix.cc
+++ b/base/profiler/native_stack_sampler_posix.cc
@@ -13,4 +13,9 @@ std::unique_ptr<NativeStackSampler> NativeStackSampler::Create(
return std::unique_ptr<NativeStackSampler>();
}
+std::unique_ptr<NativeStackSampler::StackBuffer>
+NativeStackSampler::CreateStackBuffer() {
+ return nullptr;
+}
+
} // namespace base

Powered by Google App Engine
This is Rietveld 408576698