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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/truncate.cc

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (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/chromeos/file_system_provider/operations/truncate.cc
diff --git a/chrome/browser/chromeos/file_system_provider/operations/truncate.cc b/chrome/browser/chromeos/file_system_provider/operations/truncate.cc
index 38b82fc35e5dc20676ddfab41c631ac9a9cfb3a0..c9757ce06ecacfbdce91b9a3d3448071241e65b0 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/truncate.cc
+++ b/chrome/browser/chromeos/file_system_provider/operations/truncate.cc
@@ -16,13 +16,12 @@ namespace operations {
Truncate::Truncate(extensions::EventRouter* event_router,
const ProvidedFileSystemInfo& file_system_info,
const base::FilePath& file_path,
- int64 length,
+ int64_t length,
const storage::AsyncFileUtil::StatusCallback& callback)
: Operation(event_router, file_system_info),
file_path_(file_path),
length_(length),
- callback_(callback) {
-}
+ callback_(callback) {}
Truncate::~Truncate() {
}

Powered by Google App Engine
This is Rietveld 408576698