| Index: android_webview/browser/deferred_gpu_command_service.h
|
| diff --git a/android_webview/browser/deferred_gpu_command_service.h b/android_webview/browser/deferred_gpu_command_service.h
|
| index b2f086650571653941d57a576437273817563eba..7241618c1fccb0151f52ead65e8680fa2b9bf26d 100644
|
| --- a/android_webview/browser/deferred_gpu_command_service.h
|
| +++ b/android_webview/browser/deferred_gpu_command_service.h
|
| @@ -7,13 +7,13 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include <memory>
|
| #include <queue>
|
| #include <utility>
|
|
|
| #include "base/lazy_instance.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/threading/thread_local.h"
|
| #include "base/time/time.h"
|
| #include "gpu/command_buffer/service/in_process_command_buffer.h"
|
| @@ -79,7 +79,7 @@ class DeferredGpuCommandService
|
| std::queue<base::Closure> tasks_;
|
| std::queue<std::pair<base::Time, base::Closure> > idle_tasks_;
|
|
|
| - scoped_ptr<gpu::SyncPointManager> sync_point_manager_;
|
| + std::unique_ptr<gpu::SyncPointManager> sync_point_manager_;
|
| scoped_refptr<gpu::gles2::ShaderTranslatorCache> shader_translator_cache_;
|
| scoped_refptr<gpu::gles2::FramebufferCompletenessCache>
|
| framebuffer_completeness_cache_;
|
|
|