Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(472)

Side by Side Diff: cc/trees/layer_tree_host.h

Issue 2292723003: Move remaining Blimp feature code to core. (Closed)
Patch Set: Fix build break Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/layers/picture_layer.cc ('k') | cc/trees/layer_tree_host.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_H_ 5 #ifndef CC_TREES_LAYER_TREE_HOST_H_
6 #define CC_TREES_LAYER_TREE_HOST_H_ 6 #define CC_TREES_LAYER_TREE_HOST_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <limits> 11 #include <limits>
12 #include <memory> 12 #include <memory>
13 #include <set> 13 #include <set>
14 #include <string> 14 #include <string>
15 #include <unordered_map> 15 #include <unordered_map>
16 #include <vector> 16 #include <vector>
17 17
18 #include "base/cancelable_callback.h" 18 #include "base/cancelable_callback.h"
19 #include "base/macros.h" 19 #include "base/macros.h"
20 #include "base/memory/ref_counted.h" 20 #include "base/memory/ref_counted.h"
21 #include "base/memory/weak_ptr.h" 21 #include "base/memory/weak_ptr.h"
22 #include "base/time/time.h" 22 #include "base/time/time.h"
23 #include "cc/animation/target_property.h" 23 #include "cc/animation/target_property.h"
24 #include "cc/base/cc_export.h" 24 #include "cc/base/cc_export.h"
25 #include "cc/blimp/client_picture_cache.h"
26 #include "cc/blimp/engine_picture_cache.h"
27 #include "cc/debug/micro_benchmark.h" 25 #include "cc/debug/micro_benchmark.h"
28 #include "cc/debug/micro_benchmark_controller.h" 26 #include "cc/debug/micro_benchmark_controller.h"
29 #include "cc/input/event_listener_properties.h" 27 #include "cc/input/event_listener_properties.h"
30 #include "cc/input/input_handler.h" 28 #include "cc/input/input_handler.h"
31 #include "cc/input/layer_selection_bound.h" 29 #include "cc/input/layer_selection_bound.h"
32 #include "cc/input/scrollbar.h" 30 #include "cc/input/scrollbar.h"
33 #include "cc/input/top_controls_state.h" 31 #include "cc/input/top_controls_state.h"
34 #include "cc/layers/layer_collections.h" 32 #include "cc/layers/layer_collections.h"
35 #include "cc/layers/layer_list_iterator.h" 33 #include "cc/layers/layer_list_iterator.h"
36 #include "cc/output/output_surface.h" 34 #include "cc/output/output_surface.h"
(...skipping 12 matching lines...) Expand all
49 47
50 namespace gpu { 48 namespace gpu {
51 class GpuMemoryBufferManager; 49 class GpuMemoryBufferManager;
52 } 50 }
53 51
54 namespace cc { 52 namespace cc {
55 53
56 class AnimationEvents; 54 class AnimationEvents;
57 class AnimationHost; 55 class AnimationHost;
58 class BeginFrameSource; 56 class BeginFrameSource;
57 class ClientPictureCache;
58 class EnginePictureCache;
59 class HeadsUpDisplayLayer; 59 class HeadsUpDisplayLayer;
60 class ImageSerializationProcessor; 60 class ImageSerializationProcessor;
61 class Layer; 61 class Layer;
62 class LayerTreeHostImpl; 62 class LayerTreeHostImpl;
63 class LayerTreeHostImplClient; 63 class LayerTreeHostImplClient;
64 class LayerTreeHostSingleThreadClient; 64 class LayerTreeHostSingleThreadClient;
65 class LayerTreeMutator; 65 class LayerTreeMutator;
66 class PropertyTrees; 66 class PropertyTrees;
67 class Region; 67 class Region;
68 class RemoteProtoChannel; 68 class RemoteProtoChannel;
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 uint32_t surface_client_id_; 432 uint32_t surface_client_id_;
433 uint32_t next_surface_sequence_; 433 uint32_t next_surface_sequence_;
434 uint32_t num_consecutive_frames_suitable_for_gpu_ = 0; 434 uint32_t num_consecutive_frames_suitable_for_gpu_ = 0;
435 435
436 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); 436 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost);
437 }; 437 };
438 438
439 } // namespace cc 439 } // namespace cc
440 440
441 #endif // CC_TREES_LAYER_TREE_HOST_H_ 441 #endif // CC_TREES_LAYER_TREE_HOST_H_
OLDNEW
« no previous file with comments | « cc/layers/picture_layer.cc ('k') | cc/trees/layer_tree_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698