| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_COMPOSITOR_COMPOSITOR_H_ | 5 #ifndef UI_COMPOSITOR_COMPOSITOR_H_ |
| 6 #define UI_COMPOSITOR_COMPOSITOR_H_ | 6 #define UI_COMPOSITOR_COMPOSITOR_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/containers/hash_tables.h" | 10 #include "base/containers/hash_tables.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "ui/gfx/size.h" | 21 #include "ui/gfx/size.h" |
| 22 #include "ui/gfx/vector2d.h" | 22 #include "ui/gfx/vector2d.h" |
| 23 | 23 |
| 24 class SkBitmap; | 24 class SkBitmap; |
| 25 | 25 |
| 26 namespace base { | 26 namespace base { |
| 27 class MessageLoopProxy; | 27 class MessageLoopProxy; |
| 28 class RunLoop; | 28 class RunLoop; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace blink { | |
| 32 class WebGraphicsContext3D; | |
| 33 } | |
| 34 | |
| 35 namespace cc { | 31 namespace cc { |
| 36 class ContextProvider; | 32 class ContextProvider; |
| 37 class Layer; | 33 class Layer; |
| 38 class LayerTreeDebugState; | 34 class LayerTreeDebugState; |
| 39 class LayerTreeHost; | 35 class LayerTreeHost; |
| 40 } | 36 } |
| 41 | 37 |
| 42 namespace gfx { | 38 namespace gfx { |
| 43 class Rect; | 39 class Rect; |
| 44 class Size; | 40 class Size; |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 bool draw_on_compositing_end_; | 331 bool draw_on_compositing_end_; |
| 336 | 332 |
| 337 base::WeakPtrFactory<Compositor> schedule_draw_factory_; | 333 base::WeakPtrFactory<Compositor> schedule_draw_factory_; |
| 338 | 334 |
| 339 DISALLOW_COPY_AND_ASSIGN(Compositor); | 335 DISALLOW_COPY_AND_ASSIGN(Compositor); |
| 340 }; | 336 }; |
| 341 | 337 |
| 342 } // namespace ui | 338 } // namespace ui |
| 343 | 339 |
| 344 #endif // UI_COMPOSITOR_COMPOSITOR_H_ | 340 #endif // UI_COMPOSITOR_COMPOSITOR_H_ |
| OLD | NEW |