summaryrefslogtreecommitdiffstats
path: root/chromium/base/profiler/stack_sampling_profiler_posix.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/base/profiler/stack_sampling_profiler_posix.cc')
-rw-r--r--chromium/base/profiler/stack_sampling_profiler_posix.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/chromium/base/profiler/stack_sampling_profiler_posix.cc b/chromium/base/profiler/stack_sampling_profiler_posix.cc
new file mode 100644
index 00000000000..bce37e10c3a
--- /dev/null
+++ b/chromium/base/profiler/stack_sampling_profiler_posix.cc
@@ -0,0 +1,14 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/profiler/native_stack_sampler.h"
+
+namespace base {
+
+scoped_ptr<NativeStackSampler> NativeStackSampler::Create(
+ PlatformThreadId thread_id) {
+ return scoped_ptr<NativeStackSampler>();
+}
+
+} // namespace base