| OLD | NEW |
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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 CC_TREES_LAYER_TREE_HOST_IN_PROCESS_H_ | 5 #ifndef CC_TREES_LAYER_TREE_HOST_IN_PROCESS_H_ |
| 6 #define CC_TREES_LAYER_TREE_HOST_IN_PROCESS_H_ | 6 #define CC_TREES_LAYER_TREE_HOST_IN_PROCESS_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "cc/input/event_listener_properties.h" | 27 #include "cc/input/event_listener_properties.h" |
| 28 #include "cc/input/input_handler.h" | 28 #include "cc/input/input_handler.h" |
| 29 #include "cc/input/layer_selection_bound.h" | 29 #include "cc/input/layer_selection_bound.h" |
| 30 #include "cc/input/scrollbar.h" | 30 #include "cc/input/scrollbar.h" |
| 31 #include "cc/input/top_controls_state.h" | 31 #include "cc/input/top_controls_state.h" |
| 32 #include "cc/layers/layer_collections.h" | 32 #include "cc/layers/layer_collections.h" |
| 33 #include "cc/layers/layer_list_iterator.h" | 33 #include "cc/layers/layer_list_iterator.h" |
| 34 #include "cc/output/compositor_frame_sink.h" | 34 #include "cc/output/compositor_frame_sink.h" |
| 35 #include "cc/output/swap_promise.h" | 35 #include "cc/output/swap_promise.h" |
| 36 #include "cc/resources/resource_format.h" | 36 #include "cc/resources/resource_format.h" |
| 37 #include "cc/surfaces/surface_sequence_generator.h" |
| 37 #include "cc/trees/compositor_mode.h" | 38 #include "cc/trees/compositor_mode.h" |
| 38 #include "cc/trees/layer_tree.h" | 39 #include "cc/trees/layer_tree.h" |
| 39 #include "cc/trees/layer_tree_host.h" | 40 #include "cc/trees/layer_tree_host.h" |
| 40 #include "cc/trees/layer_tree_host_client.h" | 41 #include "cc/trees/layer_tree_host_client.h" |
| 41 #include "cc/trees/layer_tree_settings.h" | 42 #include "cc/trees/layer_tree_settings.h" |
| 42 #include "cc/trees/proxy.h" | 43 #include "cc/trees/proxy.h" |
| 43 #include "cc/trees/surface_sequence_generator.h" | |
| 44 #include "cc/trees/swap_promise_manager.h" | 44 #include "cc/trees/swap_promise_manager.h" |
| 45 #include "third_party/skia/include/core/SkColor.h" | 45 #include "third_party/skia/include/core/SkColor.h" |
| 46 #include "ui/gfx/geometry/rect.h" | 46 #include "ui/gfx/geometry/rect.h" |
| 47 | 47 |
| 48 namespace gpu { | 48 namespace gpu { |
| 49 class GpuMemoryBufferManager; | 49 class GpuMemoryBufferManager; |
| 50 } // namespace gpu | 50 } // namespace gpu |
| 51 | 51 |
| 52 namespace cc { | 52 namespace cc { |
| 53 class AnimationHost; | 53 class AnimationHost; |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 | 365 |
| 366 SurfaceSequenceGenerator surface_sequence_generator_; | 366 SurfaceSequenceGenerator surface_sequence_generator_; |
| 367 uint32_t num_consecutive_frames_suitable_for_gpu_ = 0; | 367 uint32_t num_consecutive_frames_suitable_for_gpu_ = 0; |
| 368 | 368 |
| 369 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostInProcess); | 369 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostInProcess); |
| 370 }; | 370 }; |
| 371 | 371 |
| 372 } // namespace cc | 372 } // namespace cc |
| 373 | 373 |
| 374 #endif // CC_TREES_LAYER_TREE_HOST_IN_PROCESS_H_ | 374 #endif // CC_TREES_LAYER_TREE_HOST_IN_PROCESS_H_ |
| OLD | NEW |