| Index: base/profiler/win32_stack_frame_unwinder.cc
|
| diff --git a/base/profiler/win32_stack_frame_unwinder.cc b/base/profiler/win32_stack_frame_unwinder.cc
|
| index 2c0689136234839aa513a976c1d2db9b30a7dfde..fc9a9a558b80e124c3cad30abd13830f743ee72b 100644
|
| --- a/base/profiler/win32_stack_frame_unwinder.cc
|
| +++ b/base/profiler/win32_stack_frame_unwinder.cc
|
| @@ -5,6 +5,7 @@
|
| #include "base/profiler/win32_stack_frame_unwinder.h"
|
|
|
| #include <windows.h>
|
| +#include <utility>
|
|
|
| #include "base/containers/hash_tables.h"
|
| #include "base/memory/singleton.h"
|
| @@ -292,7 +293,6 @@ Win32StackFrameUnwinder::Win32StackFrameUnwinder(
|
| scoped_ptr<UnwindFunctions> unwind_functions)
|
| : at_top_frame_(true),
|
| unwind_info_present_for_all_frames_(true),
|
| - unwind_functions_(unwind_functions.Pass()) {
|
| -}
|
| + unwind_functions_(std::move(unwind_functions)) {}
|
|
|
| } // namespace base
|
|
|