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

Unified Diff: chrome/browser/browsing_data/browsing_data_local_storage_helper.cc

Issue 1542413002: Switch to standard integer types in chrome/browser/, 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: chrome/browser/browsing_data/browsing_data_local_storage_helper.cc
diff --git a/chrome/browser/browsing_data/browsing_data_local_storage_helper.cc b/chrome/browser/browsing_data/browsing_data_local_storage_helper.cc
index 76943dd052d705643a054f745e4592ce7aba64aa..c9dc1d0facb21e868a62251797f51322e474d40c 100644
--- a/chrome/browser/browsing_data/browsing_data_local_storage_helper.cc
+++ b/chrome/browser/browsing_data/browsing_data_local_storage_helper.cc
@@ -42,7 +42,7 @@ void GetUsageInfoCallback(
BrowsingDataLocalStorageHelper::LocalStorageInfo::LocalStorageInfo(
const GURL& origin_url,
- int64 size,
+ int64_t size,
base::Time last_modified)
: origin_url(origin_url), size(size), last_modified(last_modified) {}

Powered by Google App Engine
This is Rietveld 408576698