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

Unified Diff: chrome/browser/media_galleries/linux/mtp_read_file_worker.h

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/linux/mtp_read_file_worker.h
diff --git a/chrome/browser/media_galleries/linux/mtp_read_file_worker.h b/chrome/browser/media_galleries/linux/mtp_read_file_worker.h
index 0b86e2984ec52dffefb1db89aae028b73070d247..f11e0fbca485b8d2f225d671fdb8c0781779fba4 100644
--- a/chrome/browser/media_galleries/linux/mtp_read_file_worker.h
+++ b/chrome/browser/media_galleries/linux/mtp_read_file_worker.h
@@ -5,10 +5,13 @@
#ifndef CHROME_BROWSER_MEDIA_GALLERIES_LINUX_MTP_READ_FILE_WORKER_H_
#define CHROME_BROWSER_MEDIA_GALLERIES_LINUX_MTP_READ_FILE_WORKER_H_
+#include <stdint.h>
+
#include <string>
#include "base/callback.h"
#include "base/files/file.h"
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
@@ -75,7 +78,7 @@ class MTPReadFileWorker {
// If the write operation fails, |bytes_written| is set to zero.
void OnDidWriteDataChunkIntoSnapshotFile(
scoped_ptr<SnapshotFileDetails> snapshot_file_details,
- uint32 bytes_written);
+ uint32_t bytes_written);
// The device unique identifier to query the device.
const std::string device_handle_;

Powered by Google App Engine
This is Rietveld 408576698