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

Unified Diff: components/history/core/browser/download_row.cc

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn 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/history/core/browser/download_row.cc
diff --git a/components/history/core/browser/download_row.cc b/components/history/core/browser/download_row.cc
index ffd02e571db5f1ef418f5b32dfd970d2cd07016e..4e77fb66a4481700f1645eff978b0a624f1a5573 100644
--- a/components/history/core/browser/download_row.cc
+++ b/components/history/core/browser/download_row.cc
@@ -29,8 +29,8 @@ DownloadRow::DownloadRow(const base::FilePath& current_path,
const base::Time& end,
const std::string& etag,
const std::string& last_modified,
- int64 received,
- int64 total,
+ int64_t received,
+ int64_t total,
DownloadState download_state,
DownloadDangerType danger_type,
DownloadInterruptReason interrupt_reason,
@@ -56,8 +56,7 @@ DownloadRow::DownloadRow(const base::FilePath& current_path,
id(id),
opened(download_opened),
by_ext_id(ext_id),
- by_ext_name(ext_name) {
-}
+ by_ext_name(ext_name) {}
DownloadRow::~DownloadRow() {
}
« no previous file with comments | « components/history/core/browser/download_row.h ('k') | components/history/core/browser/expire_history_backend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698