| Index: components/enhanced_bookmarks/image_store.h
|
| diff --git a/components/enhanced_bookmarks/image_store.h b/components/enhanced_bookmarks/image_store.h
|
| index e92ba5a472bcd7055a90e8b02396834fb84e60f2..d1bf505707a17c32eb18ad8bd7b8be06a9de0f16 100644
|
| --- a/components/enhanced_bookmarks/image_store.h
|
| +++ b/components/enhanced_bookmarks/image_store.h
|
| @@ -5,8 +5,11 @@
|
| #ifndef COMPONENTS_ENHANCED_BOOKMARKS_IMAGE_STORE_H_
|
| #define COMPONENTS_ENHANCED_BOOKMARKS_IMAGE_STORE_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <set>
|
|
|
| +#include "base/macros.h"
|
| #include "base/sequence_checker.h"
|
| #include "components/enhanced_bookmarks/image_record.h"
|
| #include "ui/gfx/geometry/size.h"
|
| @@ -57,7 +60,7 @@ class ImageStore {
|
|
|
| // Returns the saved images storage size in bytes. If the storage doesn't
|
| // exist yet or failed to read, returns -1.
|
| - virtual int64 GetStoreSizeInBytes() = 0;
|
| + virtual int64_t GetStoreSizeInBytes() = 0;
|
|
|
| protected:
|
| base::SequenceChecker sequence_checker_;
|
|
|