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

Side by Side Diff: cc/occlusion_tracker.h

Issue 11225040: cc: Remove CC*.h temporary includes, part 5/4. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 8 years, 2 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/layer_unittest.cc ('k') | cc/occlusion_tracker.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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 CCOcclusionTracker_h 5 #ifndef CCOcclusionTracker_h
6 #define CCOcclusionTracker_h 6 #define CCOcclusionTracker_h
7 7
8 #include "base/basictypes.h"
9 #include "CCLayerIterator.h"
10 #include "FloatQuad.h" 8 #include "FloatQuad.h"
11 #include "Region.h" 9 #include "Region.h"
10 #include "base/basictypes.h"
11 #include "cc/layer_iterator.h"
12 12
13 namespace cc { 13 namespace cc {
14 class CCOverdrawMetrics; 14 class CCOverdrawMetrics;
15 class CCLayerImpl; 15 class CCLayerImpl;
16 class CCRenderSurface; 16 class CCRenderSurface;
17 class LayerChromium; 17 class LayerChromium;
18 class RenderSurfaceChromium; 18 class RenderSurfaceChromium;
19 19
20 // This class is used to track occlusion of layers while traversing them in a fr ont-to-back order. As each layer is visited, one of the 20 // This class is used to track occlusion of layers while traversing them in a fr ont-to-back order. As each layer is visited, one of the
21 // methods in this class is called to notify it about the current target surface . 21 // methods in this class is called to notify it about the current target surface .
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 Vector<IntRect>* m_occludingScreenSpaceRects; 96 Vector<IntRect>* m_occludingScreenSpaceRects;
97 97
98 DISALLOW_COPY_AND_ASSIGN(CCOcclusionTrackerBase); 98 DISALLOW_COPY_AND_ASSIGN(CCOcclusionTrackerBase);
99 }; 99 };
100 100
101 typedef CCOcclusionTrackerBase<LayerChromium, RenderSurfaceChromium> CCOcclusion Tracker; 101 typedef CCOcclusionTrackerBase<LayerChromium, RenderSurfaceChromium> CCOcclusion Tracker;
102 typedef CCOcclusionTrackerBase<CCLayerImpl, CCRenderSurface> CCOcclusionTrackerI mpl; 102 typedef CCOcclusionTrackerBase<CCLayerImpl, CCRenderSurface> CCOcclusionTrackerI mpl;
103 103
104 } 104 }
105 #endif // CCOcclusionTracker_h 105 #endif // CCOcclusionTracker_h
OLDNEW
« no previous file with comments | « cc/layer_unittest.cc ('k') | cc/occlusion_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698