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

Unified Diff: cc/tile_priority.h

Issue 11365188: cc: Fix header include guards. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/tile_manager.h ('k') | cc/transferable_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/tile_priority.h
diff --git a/cc/tile_priority.h b/cc/tile_priority.h
index 41c30acc9c59a2d1844dd57665e58fd229477e39..fd257f090ed40b1a0ca5a22c5daf91fe475b4a1f 100644
--- a/cc/tile_priority.h
+++ b/cc/tile_priority.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CC_TILE_PRIORTY_H_
-#define CC_TILE_PRIORTY_H_
+#ifndef CC_TILE_PRIORITY_H_
+#define CC_TILE_PRIORITY_H_
#include "base/memory/ref_counted.h"
#include "cc/picture_pile.h"
@@ -46,7 +46,7 @@ enum TileMemoryLimitPolicy {
};
class GlobalStateThatImpactsTilePriority {
-public:
+ public:
GlobalStateThatImpactsTilePriority()
: memory_limit_policy(ALLOW_NOTHING)
, memory_limit_in_bytes(0)
@@ -70,7 +70,7 @@ public:
class TilePriorityComparator {
public:
TilePriorityComparator(GlobalStateThatImpactsTilePriority& global_state)
- : global_state_(global_state) {}
+ : global_state_(global_state) {}
int compare(const TilePriority& a, const TilePriority& b) {
// TODO(nduca,enne): Implement a comparator using the attributes here.
@@ -82,4 +82,5 @@ class TilePriorityComparator {
};
} // namespace cc
-#endif
+
+#endif // CC_TILE_PRIORITY_H_
« no previous file with comments | « cc/tile_manager.h ('k') | cc/transferable_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698