summaryrefslogtreecommitdiffstats
path: root/cc/resources/tile_priority.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc/resources/tile_priority.h')
-rw-r--r--cc/resources/tile_priority.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/cc/resources/tile_priority.h b/cc/resources/tile_priority.h
index a9558ef..d14f311 100644
--- a/cc/resources/tile_priority.h
+++ b/cc/resources/tile_priority.h
@@ -5,6 +5,7 @@
#ifndef CC_RESOURCES_TILE_PRIORITY_H_
#define CC_RESOURCES_TILE_PRIORITY_H_
+#include <algorithm>
#include <limits>
#include "base/memory/ref_counted.h"
@@ -151,13 +152,13 @@ enum TileMemoryLimitPolicy {
ALLOW_NOTHING,
// You might be made visible, but you're not being interacted with.
- ALLOW_ABSOLUTE_MINIMUM, // Tall.
+ ALLOW_ABSOLUTE_MINIMUM, // Tall.
// You're being interacted with, but we're low on memory.
- ALLOW_PREPAINT_ONLY, // Grande.
+ ALLOW_PREPAINT_ONLY, // Grande.
// You're the only thing in town. Go crazy.
- ALLOW_ANYTHING, // Venti.
+ ALLOW_ANYTHING, // Venti.
// Be sure to update TreePriorityAsValue when adding new fields.
};