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

Unified Diff: chrome/browser/media_galleries/fileapi/mtp_device_async_delegate.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 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/media_galleries/fileapi/mtp_device_async_delegate.cc
diff --git a/chrome/browser/media_galleries/fileapi/mtp_device_async_delegate.cc b/chrome/browser/media_galleries/fileapi/mtp_device_async_delegate.cc
index cc091e9a94c88e9ac401b5779c0f952b8d00e0f2..712450658389755fc8abf526f560f29749d64a3d 100644
--- a/chrome/browser/media_galleries/fileapi/mtp_device_async_delegate.cc
+++ b/chrome/browser/media_galleries/fileapi/mtp_device_async_delegate.cc
@@ -7,7 +7,10 @@
#include "net/base/io_buffer.h"
MTPDeviceAsyncDelegate::ReadBytesRequest::ReadBytesRequest(
- uint32 file_id, net::IOBuffer* buf, int64 offset, int buf_len,
+ uint32_t file_id,
+ net::IOBuffer* buf,
+ int64_t offset,
+ int buf_len,
const ReadBytesSuccessCallback& success_callback,
const ErrorCallback& error_callback)
: file_id(file_id),
@@ -15,7 +18,6 @@ MTPDeviceAsyncDelegate::ReadBytesRequest::ReadBytesRequest(
offset(offset),
buf_len(buf_len),
success_callback(success_callback),
- error_callback(error_callback) {
-}
+ error_callback(error_callback) {}
MTPDeviceAsyncDelegate::ReadBytesRequest::~ReadBytesRequest() {}

Powered by Google App Engine
This is Rietveld 408576698