Index: net/disk_cache/simple/simple_entry_format_history.h |
diff --git a/net/disk_cache/simple/simple_entry_format_history.h b/net/disk_cache/simple/simple_entry_format_history.h |
index f7b818a59e9418121ee13d62208ec61232780c98..89d378b620bfaac6c527cd010cfe13c1a34d461d 100644 |
--- a/net/disk_cache/simple/simple_entry_format_history.h |
+++ b/net/disk_cache/simple/simple_entry_format_history.h |
@@ -5,16 +5,17 @@ |
#ifndef NET_DISK_CACHE_SIMPLE_SIMPLE_ENTRY_FORMAT_HISTORY_H_ |
#define NET_DISK_CACHE_SIMPLE_SIMPLE_ENTRY_FORMAT_HISTORY_H_ |
+#include <stdint.h> |
+ |
#include "base/basictypes.h" |
-#include "base/port.h" |
#include "net/base/net_export.h" |
namespace disk_cache { |
namespace simplecache_v5 { |
-const uint64 kSimpleInitialMagicNumber = GG_UINT64_C(0xfcfb6d1ba7725c30); |
-const uint64 kSimpleFinalMagicNumber = GG_UINT64_C(0xf4fa6f45970d41d8); |
+const uint64 kSimpleInitialMagicNumber = UINT64_C(0xfcfb6d1ba7725c30); |
+const uint64 kSimpleFinalMagicNumber = UINT64_C(0xf4fa6f45970d41d8); |
// A file containing stream 0 and stream 1 in the Simple cache consists of: |
// - a SimpleFileHeader. |