Index: content/test/fake_compositor_dependencies.cc |
diff --git a/content/test/fake_compositor_dependencies.cc b/content/test/fake_compositor_dependencies.cc |
index a92e4494522e97968abbac855a7f709803d890dc..bdd240ac04c1cad0327ee650791bdc43dd99284b 100644 |
--- a/content/test/fake_compositor_dependencies.cc |
+++ b/content/test/fake_compositor_dependencies.cc |
@@ -6,6 +6,7 @@ |
#include <stddef.h> |
+#include "base/memory/ptr_util.h" |
#include "base/single_thread_task_runner.h" |
#include "base/thread_task_runner_handle.h" |
#include "cc/test/fake_external_begin_frame_source.h" |
@@ -90,10 +91,10 @@ FakeCompositorDependencies::GetSharedMainThreadContextProvider() { |
return nullptr; |
} |
-scoped_ptr<cc::BeginFrameSource> |
+std::unique_ptr<cc::BeginFrameSource> |
FakeCompositorDependencies::CreateExternalBeginFrameSource(int routing_id) { |
double refresh_rate = 200.0; |
- return make_scoped_ptr(new cc::FakeExternalBeginFrameSource(refresh_rate)); |
+ return base::WrapUnique(new cc::FakeExternalBeginFrameSource(refresh_rate)); |
} |
cc::ImageSerializationProcessor* |