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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/write_file.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/write_file.cc
diff --git a/chrome/browser/chromeos/file_system_provider/operations/write_file.cc b/chrome/browser/chromeos/file_system_provider/operations/write_file.cc
index c1bf23b15b3a96db10a1cf7d8655474897682f99..d21185534c46b2ddf0131702e0414a96ae6e1b4a 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/write_file.cc
+++ b/chrome/browser/chromeos/file_system_provider/operations/write_file.cc
@@ -17,7 +17,7 @@ WriteFile::WriteFile(extensions::EventRouter* event_router,
const ProvidedFileSystemInfo& file_system_info,
int file_handle,
scoped_refptr<net::IOBuffer> buffer,
- int64 offset,
+ int64_t offset,
int length,
const storage::AsyncFileUtil::StatusCallback& callback)
: Operation(event_router, file_system_info),
@@ -25,8 +25,7 @@ WriteFile::WriteFile(extensions::EventRouter* event_router,
buffer_(buffer),
offset_(offset),
length_(length),
- callback_(callback) {
-}
+ callback_(callback) {}
WriteFile::~WriteFile() {
}

Powered by Google App Engine
This is Rietveld 408576698