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

Unified Diff: components/enhanced_bookmarks/persistent_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/persistent_image_store.h
diff --git a/components/enhanced_bookmarks/persistent_image_store.h b/components/enhanced_bookmarks/persistent_image_store.h
index 0de07e451bcc6d4bf6accc684cda686da37e8af4..8857f47140addd886315b2286efdf61cc429b503 100644
--- a/components/enhanced_bookmarks/persistent_image_store.h
+++ b/components/enhanced_bookmarks/persistent_image_store.h
@@ -7,7 +7,10 @@
#include "components/enhanced_bookmarks/image_store.h"
+#include <stdint.h>
+
#include "base/files/file_path.h"
+#include "base/macros.h"
#include "sql/connection.h"
#include "sql/init_status.h"
#include "sql/meta_table.h"
@@ -29,7 +32,7 @@ class PersistentImageStore : public ImageStore {
gfx::Size GetSize(const GURL& page_url) override;
void GetAllPageUrls(std::set<GURL>* urls) override;
void ClearAll() override;
- int64 GetStoreSizeInBytes() override;
+ int64_t GetStoreSizeInBytes() override;
protected:
~PersistentImageStore() override;
« no previous file with comments | « components/enhanced_bookmarks/item_position.cc ('k') | components/enhanced_bookmarks/persistent_image_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698