Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1157)

Unified Diff: components/mus/gles2/raster_thread_helper.h

Issue 1906623003: Convert //components/mus from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/mus/gles2/ozone_gpu_memory_buffer.cc ('k') | components/mus/mus_app.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/gles2/raster_thread_helper.h
diff --git a/components/mus/gles2/raster_thread_helper.h b/components/mus/gles2/raster_thread_helper.h
index 4278675c30d6cceb216273f1044f5ce3c679fd8b..a43dfab08109a54250946dc50918259b85c81caa 100644
--- a/components/mus/gles2/raster_thread_helper.h
+++ b/components/mus/gles2/raster_thread_helper.h
@@ -5,8 +5,9 @@
#ifndef COMPONENTS_MUS_GLES2_RASTER_THREAD_HELPER_H_
#define COMPONENTS_MUS_GLES2_RASTER_THREAD_HELPER_H_
+#include <memory>
+
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
namespace cc {
class TaskGraphRunner;
@@ -23,7 +24,7 @@ class RasterThreadHelper {
cc::TaskGraphRunner* task_graph_runner();
private:
- scoped_ptr<cc::SingleThreadTaskGraphRunner> task_graph_runner_;
+ std::unique_ptr<cc::SingleThreadTaskGraphRunner> task_graph_runner_;
DISALLOW_COPY_AND_ASSIGN(RasterThreadHelper);
};
« no previous file with comments | « components/mus/gles2/ozone_gpu_memory_buffer.cc ('k') | components/mus/mus_app.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698