| Index: components/enhanced_bookmarks/test_image_store.cc
|
| diff --git a/components/enhanced_bookmarks/test_image_store.cc b/components/enhanced_bookmarks/test_image_store.cc
|
| index 28c8de086240fc0e72810bd027f2296e2a2435a9..b28bd70f90d620d48939d05491032221087ff811 100644
|
| --- a/components/enhanced_bookmarks/test_image_store.cc
|
| +++ b/components/enhanced_bookmarks/test_image_store.cc
|
| @@ -68,10 +68,10 @@ void TestImageStore::ClearAll() {
|
| store_.clear();
|
| }
|
|
|
| -int64 TestImageStore::GetStoreSizeInBytes() {
|
| +int64_t TestImageStore::GetStoreSizeInBytes() {
|
| // Not 100% accurate, but it's for testing so the actual value is not
|
| // important.
|
| - int64 size = sizeof(store_);
|
| + int64_t size = sizeof(store_);
|
| for (ImageMap::const_iterator it = store_.begin(); it != store_.end(); ++it) {
|
| size += sizeof(it->first);
|
| size += it->first.spec().length();
|
|
|