| Index: components/sync_sessions/favicon_cache.h
|
| diff --git a/components/sync_sessions/favicon_cache.h b/components/sync_sessions/favicon_cache.h
|
| index 1361792eb713a3ee576c59a1aa0826a0f9a5f362..19202eaae93871ea74f76f7aca242e910956daef 100644
|
| --- a/components/sync_sessions/favicon_cache.h
|
| +++ b/components/sync_sessions/favicon_cache.h
|
| @@ -5,14 +5,17 @@
|
| #ifndef COMPONENTS_SYNC_SESSIONS_FAVICON_CACHE_H_
|
| #define COMPONENTS_SYNC_SESSIONS_FAVICON_CACHE_H_
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <map>
|
| #include <set>
|
| #include <string>
|
| #include <vector>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/compiler_specific.h"
|
| #include "base/gtest_prod_util.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/linked_ptr.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/ref_counted_memory.h"
|
| @@ -105,7 +108,7 @@ class FaviconCache : public syncer::SyncableService,
|
| void OnReceivedSyncFavicon(const GURL& page_url,
|
| const GURL& icon_url,
|
| const std::string& icon_bytes,
|
| - int64 visit_time_ms);
|
| + int64_t visit_time_ms);
|
|
|
| private:
|
| friend class SyncFaviconCacheTest;
|
| @@ -132,7 +135,7 @@ class FaviconCache : public syncer::SyncableService,
|
| // whether caller holds a sync transaction.
|
| void OnReceivedSyncFaviconImpl(const GURL& icon_url,
|
| const std::string& icon_bytes,
|
| - int64 visit_time_ms);
|
| + int64_t visit_time_ms);
|
|
|
| // Callback method to store a tab's favicon into its sync node once it becomes
|
| // available. Does nothing if no favicon data was available.
|
|
|