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

Unified Diff: components/enhanced_bookmarks/test_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/test_image_store.h
diff --git a/components/enhanced_bookmarks/test_image_store.h b/components/enhanced_bookmarks/test_image_store.h
index e74d25b77892fa7998a9c05b2cd7c1f5acc6c819..e17c71cafb65659571598b6c81fb1b657b419d0f 100644
--- a/components/enhanced_bookmarks/test_image_store.h
+++ b/components/enhanced_bookmarks/test_image_store.h
@@ -5,6 +5,9 @@
#ifndef COMPONENTS_ENHANCED_BOOKMARKS_TEST_IMAGE_STORE_H_
#define COMPONENTS_ENHANCED_BOOKMARKS_TEST_IMAGE_STORE_H_
+#include <stdint.h>
+
+#include "base/macros.h"
#include "components/enhanced_bookmarks/image_store.h"
// The TestImageStore is an implementation of ImageStore that keeps all its
@@ -23,7 +26,7 @@ class TestImageStore : 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:
~TestImageStore() override;
« no previous file with comments | « components/enhanced_bookmarks/persistent_image_store.cc ('k') | components/enhanced_bookmarks/test_image_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698