Index: components/view_manager/gles2/raster_thread_helper.h |
diff --git a/components/view_manager/gles2/raster_thread_helper.h b/components/view_manager/gles2/raster_thread_helper.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bb34656f6eef2375cdb5e5f1404c6abff7576c0c |
--- /dev/null |
+++ b/components/view_manager/gles2/raster_thread_helper.h |
@@ -0,0 +1,34 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
danakj
2015/06/15 18:20:35
2015
jam
2015/06/15 22:06:01
Done.
|
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef COMPONENTS_VIEW_MANAGER_GLES2_RASTER_THREAD_HELPER_H_ |
+#define COMPONENTS_VIEW_MANAGER_GLES2_RASTER_THREAD_HELPER_H_ |
+ |
+#include "base/memory/scoped_ptr.h" |
+ |
+namespace cc { |
+class TaskGraphRunner; |
+} |
+ |
+namespace gles2 { |
+ |
+class RasterThreadHelper { |
+ public: |
+ RasterThreadHelper(); |
+ ~RasterThreadHelper(); |
+ |
+ cc::TaskGraphRunner* task_graph_runner() { return task_graph_runner_.get(); } |
+ |
+ private: |
+ class RasterThread; |
+ |
+ scoped_ptr<cc::TaskGraphRunner> task_graph_runner_; |
+ scoped_ptr<RasterThread> raster_thread_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(RasterThreadHelper); |
+}; |
+ |
+} // namespace gles2 |
+ |
+#endif // COMPONENTS_VIEW_MANAGER_GLES2_RASTER_THREAD_HELPER_H_ |