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

Unified Diff: components/offline_pages/offline_page_item.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
Index: components/offline_pages/offline_page_item.cc
diff --git a/components/offline_pages/offline_page_item.cc b/components/offline_pages/offline_page_item.cc
index 2cfcfc02baceec864e73bf817571a92e0adeef13..2259c1fa4676b34856df8e70543de1a3c5be1d2d 100644
--- a/components/offline_pages/offline_page_item.cc
+++ b/components/offline_pages/offline_page_item.cc
@@ -20,22 +20,21 @@ OfflinePageItem::OfflinePageItem()
}
OfflinePageItem::OfflinePageItem(const GURL& url,
- int64 bookmark_id,
+ int64_t bookmark_id,
const base::FilePath& file_path,
- int64 file_size)
+ int64_t file_size)
: url(url),
bookmark_id(bookmark_id),
version(kCurrentVersion),
file_path(file_path),
file_size(file_size),
access_count(0),
- flags(NO_FLAG) {
-}
+ flags(NO_FLAG) {}
OfflinePageItem::OfflinePageItem(const GURL& url,
- int64 bookmark_id,
+ int64_t bookmark_id,
const base::FilePath& file_path,
- int64 file_size,
+ int64_t file_size,
const base::Time& creation_time)
: url(url),
bookmark_id(bookmark_id),
@@ -45,8 +44,7 @@ OfflinePageItem::OfflinePageItem(const GURL& url,
creation_time(creation_time),
last_access_time(creation_time),
access_count(0),
- flags(NO_FLAG) {
-}
+ flags(NO_FLAG) {}
OfflinePageItem::~OfflinePageItem() {
}
« no previous file with comments | « components/offline_pages/offline_page_item.h ('k') | components/offline_pages/offline_page_metadata_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698