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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/read_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/read_file.cc
diff --git a/chrome/browser/chromeos/file_system_provider/operations/read_file.cc b/chrome/browser/chromeos/file_system_provider/operations/read_file.cc
index 398edc28ff8e5b79936684e2550b8632f4f226f5..03ff60b66d35a93dcfc0b3ce54f8fc5969996fd5 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/read_file.cc
+++ b/chrome/browser/chromeos/file_system_provider/operations/read_file.cc
@@ -4,6 +4,8 @@
#include "chrome/browser/chromeos/file_system_provider/operations/read_file.h"
+#include <stddef.h>
+
#include <limits>
#include <string>
@@ -47,7 +49,7 @@ ReadFile::ReadFile(
const ProvidedFileSystemInfo& file_system_info,
int file_handle,
scoped_refptr<net::IOBuffer> buffer,
- int64 offset,
+ int64_t offset,
int length,
const ProvidedFileSystemInterface::ReadChunkReceivedCallback& callback)
: Operation(event_router, file_system_info),
@@ -56,8 +58,7 @@ ReadFile::ReadFile(
offset_(offset),
length_(length),
current_offset_(0),
- callback_(callback) {
-}
+ callback_(callback) {}
ReadFile::~ReadFile() {
}

Powered by Google App Engine
This is Rietveld 408576698