Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(405)

Unified Diff: components/enhanced_bookmarks/image_store.h

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;
« no previous file with comments | « components/enhanced_bookmarks/enhanced_bookmark_features.cc ('k') | components/enhanced_bookmarks/image_store_ios_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698