Index: cc/resources/memory_history.h |
diff --git a/cc/resources/memory_history.h b/cc/resources/memory_history.h |
index 15ddc75aa24c8d1a7f00f2a1f8784a150e6ac69a..cdcc46aafaeaf6de5485db4e6cb4bb8d46817e88 100644 |
--- a/cc/resources/memory_history.h |
+++ b/cc/resources/memory_history.h |
@@ -5,7 +5,10 @@ |
#ifndef CC_RESOURCES_MEMORY_HISTORY_H_ |
#define CC_RESOURCES_MEMORY_HISTORY_H_ |
-#include "base/basictypes.h" |
+#include <stddef.h> |
+#include <stdint.h> |
+ |
+#include "base/macros.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/time/time.h" |
#include "cc/debug/ring_buffer.h" |
@@ -26,7 +29,7 @@ class MemoryHistory { |
had_enough_memory(false) {} |
size_t total_budget_in_bytes; |
- int64 total_bytes_used; |
+ int64_t total_bytes_used; |
bool had_enough_memory; |
}; |