| 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 <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "ui/compositor/compositor_animation_observer.h" | 22 #include "ui/compositor/compositor_animation_observer.h" |
| 23 #include "ui/compositor/compositor_export.h" | 23 #include "ui/compositor/compositor_export.h" |
| 24 #include "ui/compositor/compositor_observer.h" | 24 #include "ui/compositor/compositor_observer.h" |
| 25 #include "ui/compositor/layer_animator_collection.h" | 25 #include "ui/compositor/layer_animator_collection.h" |
| 26 #include "ui/gfx/geometry/size.h" | 26 #include "ui/gfx/geometry/size.h" |
| 27 #include "ui/gfx/geometry/vector2d.h" | 27 #include "ui/gfx/geometry/vector2d.h" |
| 28 #include "ui/gfx/gpu_memory_buffer.h" | 28 #include "ui/gfx/gpu_memory_buffer.h" |
| 29 #include "ui/gfx/native_widget_types.h" | 29 #include "ui/gfx/native_widget_types.h" |
| 30 | 30 |
| 31 namespace base { | 31 namespace base { |
| 32 class MessageLoopProxy; | |
| 33 class RunLoop; | 32 class RunLoop; |
| 33 class SingleThreadTaskRunner; |
| 34 } | 34 } |
| 35 | 35 |
| 36 namespace cc { | 36 namespace cc { |
| 37 class ContextProvider; | 37 class ContextProvider; |
| 38 class Layer; | 38 class Layer; |
| 39 class LayerTreeDebugState; | 39 class LayerTreeDebugState; |
| 40 class LayerTreeHost; | 40 class LayerTreeHost; |
| 41 class RendererSettings; | 41 class RendererSettings; |
| 42 class SharedBitmapManager; | 42 class SharedBitmapManager; |
| 43 class SurfaceIdAllocator; | 43 class SurfaceIdAllocator; |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 cc::BeginFrameArgs missed_begin_frame_args_; | 367 cc::BeginFrameArgs missed_begin_frame_args_; |
| 368 | 368 |
| 369 base::WeakPtrFactory<Compositor> weak_ptr_factory_; | 369 base::WeakPtrFactory<Compositor> weak_ptr_factory_; |
| 370 | 370 |
| 371 DISALLOW_COPY_AND_ASSIGN(Compositor); | 371 DISALLOW_COPY_AND_ASSIGN(Compositor); |
| 372 }; | 372 }; |
| 373 | 373 |
| 374 } // namespace ui | 374 } // namespace ui |
| 375 | 375 |
| 376 #endif // UI_COMPOSITOR_COMPOSITOR_H_ | 376 #endif // UI_COMPOSITOR_COMPOSITOR_H_ |
| OLD | NEW |