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 |
deleted file mode 100644 |
index a43dfab08109a54250946dc50918259b85c81caa..0000000000000000000000000000000000000000 |
--- a/components/mus/gles2/raster_thread_helper.h |
+++ /dev/null |
@@ -1,34 +0,0 @@ |
-// Copyright 2015 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef COMPONENTS_MUS_GLES2_RASTER_THREAD_HELPER_H_ |
-#define COMPONENTS_MUS_GLES2_RASTER_THREAD_HELPER_H_ |
- |
-#include <memory> |
- |
-#include "base/macros.h" |
- |
-namespace cc { |
-class TaskGraphRunner; |
-class SingleThreadTaskGraphRunner; |
-} |
- |
-namespace gles2 { |
- |
-class RasterThreadHelper { |
- public: |
- RasterThreadHelper(); |
- ~RasterThreadHelper(); |
- |
- cc::TaskGraphRunner* task_graph_runner(); |
- |
- private: |
- std::unique_ptr<cc::SingleThreadTaskGraphRunner> task_graph_runner_; |
- |
- DISALLOW_COPY_AND_ASSIGN(RasterThreadHelper); |
-}; |
- |
-} // namespace gles2 |
- |
-#endif // COMPONENTS_MUS_GLES2_RASTER_THREAD_HELPER_H_ |