| Index: components/precache/core/precache_database.h
|
| diff --git a/components/precache/core/precache_database.h b/components/precache/core/precache_database.h
|
| index 6aa341c0738757d474a73cb15999d27e03f795dd..7c74f476bed3ae5a8947e52984125edb158dab2b 100644
|
| --- a/components/precache/core/precache_database.h
|
| +++ b/components/precache/core/precache_database.h
|
| @@ -5,12 +5,14 @@
|
| #ifndef COMPONENTS_PRECACHE_CORE_PRECACHE_DATABASE_H_
|
| #define COMPONENTS_PRECACHE_CORE_PRECACHE_DATABASE_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
| #include <vector>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/callback.h"
|
| #include "base/containers/hash_tables.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/threading/thread_checker.h"
|
| @@ -53,7 +55,7 @@ class PrecacheDatabase : public base::RefCountedThreadSafe<PrecacheDatabase> {
|
| void RecordURLPrefetch(const GURL& url,
|
| const base::TimeDelta& latency,
|
| const base::Time& fetch_time,
|
| - int64 size,
|
| + int64_t size,
|
| bool was_cached);
|
|
|
| // Report precache-related metrics in response to a URL being fetched, where
|
| @@ -62,7 +64,7 @@ class PrecacheDatabase : public base::RefCountedThreadSafe<PrecacheDatabase> {
|
| void RecordURLNonPrefetch(const GURL& url,
|
| const base::TimeDelta& latency,
|
| const base::Time& fetch_time,
|
| - int64 size,
|
| + int64_t size,
|
| bool was_cached,
|
| int host_rank,
|
| bool is_connection_cellular);
|
|
|