Index: cc/resources/priority_calculator.h |
diff --git a/cc/resources/priority_calculator.h b/cc/resources/priority_calculator.h |
index 2c940d8213f16b498a688f1369fd40d82377638d..877896176b835d6d88a40416dd95f2ed7384b36e 100644 |
--- a/cc/resources/priority_calculator.h |
+++ b/cc/resources/priority_calculator.h |
@@ -5,6 +5,7 @@ |
#ifndef CC_RESOURCES_PRIORITY_CALCULATOR_H_ |
#define CC_RESOURCES_PRIORITY_CALCULATOR_H_ |
+#include "base/basictypes.h" |
#include "cc/base/cc_export.h" |
namespace gfx { class Rect; } |
@@ -13,6 +14,8 @@ namespace cc { |
class CC_EXPORT PriorityCalculator { |
public: |
+ PriorityCalculator() {} |
+ |
static int UIPriority(bool draws_to_root_surface); |
static int VisiblePriority(bool draws_to_root_surface); |
static int RenderSurfacePriority(); |
@@ -34,6 +37,9 @@ class CC_EXPORT PriorityCalculator { |
static int AllowVisibleOnlyCutoff(); |
static int AllowVisibleAndNearbyCutoff(); |
static int AllowEverythingCutoff(); |
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(PriorityCalculator); |
}; |
} // namespace cc |