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

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

Issue 183563003: cc: Clean up OcclusionTracker template parameters. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: occlusionparams: Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « cc/test/test_occlusion_tracker.h ('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 <limits> 8 #include <limits>
9 #include <list> 9 #include <list>
10 #include <set> 10 #include <set>
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/basictypes.h" 14 #include "base/basictypes.h"
15 #include "base/cancelable_callback.h" 15 #include "base/cancelable_callback.h"
16 #include "base/containers/hash_tables.h" 16 #include "base/containers/hash_tables.h"
17 #include "base/memory/ref_counted.h" 17 #include "base/memory/ref_counted.h"
18 #include "base/memory/scoped_ptr.h" 18 #include "base/memory/scoped_ptr.h"
19 #include "base/memory/weak_ptr.h" 19 #include "base/memory/weak_ptr.h"
20 #include "base/time/time.h" 20 #include "base/time/time.h"
21 #include "base/timer/timer.h" 21 #include "base/timer/timer.h"
22 #include "cc/animation/animation_events.h" 22 #include "cc/animation/animation_events.h"
23 #include "cc/base/cc_export.h" 23 #include "cc/base/cc_export.h"
24 #include "cc/base/scoped_ptr_vector.h" 24 #include "cc/base/scoped_ptr_vector.h"
25 #include "cc/base/swap_promise.h" 25 #include "cc/base/swap_promise.h"
26 #include "cc/base/swap_promise_monitor.h" 26 #include "cc/base/swap_promise_monitor.h"
27 #include "cc/debug/micro_benchmark.h" 27 #include "cc/debug/micro_benchmark.h"
28 #include "cc/debug/micro_benchmark_controller.h" 28 #include "cc/debug/micro_benchmark_controller.h"
29 #include "cc/debug/overdraw_metrics.h"
29 #include "cc/input/input_handler.h" 30 #include "cc/input/input_handler.h"
30 #include "cc/input/scrollbar.h" 31 #include "cc/input/scrollbar.h"
31 #include "cc/input/top_controls_state.h" 32 #include "cc/input/top_controls_state.h"
32 #include "cc/layers/layer_lists.h" 33 #include "cc/layers/layer_lists.h"
33 #include "cc/output/output_surface.h" 34 #include "cc/output/output_surface.h"
34 #include "cc/resources/resource_format.h" 35 #include "cc/resources/resource_format.h"
35 #include "cc/resources/scoped_ui_resource.h" 36 #include "cc/resources/scoped_ui_resource.h"
36 #include "cc/trees/layer_tree_host_client.h" 37 #include "cc/trees/layer_tree_host_client.h"
37 #include "cc/trees/layer_tree_host_common.h" 38 #include "cc/trees/layer_tree_host_common.h"
38 #include "cc/trees/layer_tree_settings.h" 39 #include "cc/trees/layer_tree_settings.h"
39 #include "cc/trees/occlusion_tracker.h"
40 #include "cc/trees/proxy.h" 40 #include "cc/trees/proxy.h"
41 #include "third_party/skia/include/core/SkColor.h" 41 #include "third_party/skia/include/core/SkColor.h"
42 #include "ui/gfx/rect.h" 42 #include "ui/gfx/rect.h"
43 43
44 namespace cc { 44 namespace cc {
45 45
46 class AnimationRegistrar; 46 class AnimationRegistrar;
47 class HeadsUpDisplayLayer; 47 class HeadsUpDisplayLayer;
48 class Layer; 48 class Layer;
49 class LayerTreeHostImpl; 49 class LayerTreeHostImpl;
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 460
461 ScopedPtrVector<SwapPromise> swap_promise_list_; 461 ScopedPtrVector<SwapPromise> swap_promise_list_;
462 std::set<SwapPromiseMonitor*> swap_promise_monitor_; 462 std::set<SwapPromiseMonitor*> swap_promise_monitor_;
463 463
464 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); 464 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost);
465 }; 465 };
466 466
467 } // namespace cc 467 } // namespace cc
468 468
469 #endif // CC_TREES_LAYER_TREE_HOST_H_ 469 #endif // CC_TREES_LAYER_TREE_HOST_H_
OLDNEW
« no previous file with comments | « cc/test/test_occlusion_tracker.h ('k') | cc/trees/layer_tree_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698