| 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 c67d8857a572172fe904ebb8b8afd183f8c0c9bb..a3867661cd801d299ea97bac9c387276700b30fa 100644
|
| --- a/base/profiler/native_stack_sampler_posix.cc
|
| +++ b/base/profiler/native_stack_sampler_posix.cc
|
| @@ -6,10 +6,10 @@
|
|
|
| namespace base {
|
|
|
| -scoped_ptr<NativeStackSampler> NativeStackSampler::Create(
|
| +std::unique_ptr<NativeStackSampler> NativeStackSampler::Create(
|
| PlatformThreadId thread_id,
|
| NativeStackSamplerTestDelegate* test_delegate) {
|
| - return scoped_ptr<NativeStackSampler>();
|
| + return std::unique_ptr<NativeStackSampler>();
|
| }
|
|
|
| } // namespace base
|
|
|