| Index: content/public/test/mock_render_process_host.h
|
| diff --git a/content/public/test/mock_render_process_host.h b/content/public/test/mock_render_process_host.h
|
| index 03a4b9ed3ea37628a45e9d9b6568a1ef6cc0fbc8..295c7727114797cb62855c6554a841e958868dec 100644
|
| --- a/content/public/test/mock_render_process_host.h
|
| +++ b/content/public/test/mock_render_process_host.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <stddef.h>
|
| #include <stdint.h>
|
| +#include <utility>
|
|
|
| #include "base/macros.h"
|
| #include "base/memory/scoped_vector.h"
|
| @@ -127,7 +128,7 @@ class MockRenderProcessHost : public RenderProcessHost {
|
| }
|
|
|
| void SetProcessHandle(scoped_ptr<base::ProcessHandle> new_handle) {
|
| - process_handle = new_handle.Pass();
|
| + process_handle = std::move(new_handle);
|
| }
|
|
|
| void GetAudioOutputControllers(
|
|
|