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

Unified Diff: components/offline_pages/offline_page_test_store.cc

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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
« no previous file with comments | « components/offline_pages/offline_page_test_store.h ('k') | components/omnibox/browser/answers_cache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/offline_pages/offline_page_test_store.cc
diff --git a/components/offline_pages/offline_page_test_store.cc b/components/offline_pages/offline_page_test_store.cc
index 8c8ea9438e09953cd41e6b3488395cd6cd6535b4..186a0b922bfff6af8b3dc6dd6fe0fa3036ab1a8f 100644
--- a/components/offline_pages/offline_page_test_store.cc
+++ b/components/offline_pages/offline_page_test_store.cc
@@ -46,7 +46,7 @@ void OfflinePageTestStore::AddOrUpdateOfflinePage(
}
void OfflinePageTestStore::RemoveOfflinePages(
- const std::vector<int64>& bookmark_ids,
+ const std::vector<int64_t>& bookmark_ids,
const UpdateCallback& callback) {
ASSERT_FALSE(bookmark_ids.empty());
bool result = false;
@@ -69,7 +69,7 @@ void OfflinePageTestStore::Reset(const ResetCallback& callback) {
}
void OfflinePageTestStore::UpdateLastAccessTime(
- int64 bookmark_id,
+ int64_t bookmark_id,
const base::Time& last_access_time) {
auto iter = offline_pages_.find(bookmark_id);
if (iter == offline_pages_.end())
« no previous file with comments | « components/offline_pages/offline_page_test_store.h ('k') | components/omnibox/browser/answers_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698