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

Side by Side Diff: cc/overdraw_metrics.h

Issue 11368063: cc: Fix header include guards of our header files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 1 month 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/occlusion_tracker.h ('k') | cc/page_scale_animation.h » ('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 CCOverdrawMetrics_h 5 #ifndef CC_OVERDRAW_METRICS_H_
6 #define CCOverdrawMetrics_h 6 #define CC_OVERDRAW_METRICS_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 9
10 namespace gfx { 10 namespace gfx {
11 class Rect; 11 class Rect;
12 } 12 }
13 13
14 namespace WebKit { 14 namespace WebKit {
15 class WebTransformationMatrix; 15 class WebTransformationMatrix;
16 } 16 }
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 // Count of pixels that are opaque (and thus occlude). Ideally this is no mo re than wiewport width x height. 90 // Count of pixels that are opaque (and thus occlude). Ideally this is no mo re than wiewport width x height.
91 float m_pixelsDrawnOpaque; 91 float m_pixelsDrawnOpaque;
92 // Count of pixels that are possibly translucent, and cannot occlude. 92 // Count of pixels that are possibly translucent, and cannot occlude.
93 float m_pixelsDrawnTranslucent; 93 float m_pixelsDrawnTranslucent;
94 // Count of pixels not drawn as they are occluded by somthing opaque. 94 // Count of pixels not drawn as they are occluded by somthing opaque.
95 float m_pixelsCulledForDrawing; 95 float m_pixelsCulledForDrawing;
96 }; 96 };
97 97
98 } // namespace cc 98 } // namespace cc
99 99
100 #endif 100 #endif // CC_OVERDRAW_METRICS_H_
OLDNEW
« no previous file with comments | « cc/occlusion_tracker.h ('k') | cc/page_scale_animation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698