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

Unified Diff: chrome/browser/media_galleries/win/mtp_device_object_entry.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/win/mtp_device_object_entry.h
diff --git a/chrome/browser/media_galleries/win/mtp_device_object_entry.h b/chrome/browser/media_galleries/win/mtp_device_object_entry.h
index b26652e9316528ea2d023ca76ddee84bdc306444..e18224110697b4082ddff12a3d4354f2a5d3d5ba 100644
--- a/chrome/browser/media_galleries/win/mtp_device_object_entry.h
+++ b/chrome/browser/media_galleries/win/mtp_device_object_entry.h
@@ -5,9 +5,10 @@
#ifndef CHROME_BROWSER_MEDIA_GALLERIES_WIN_MTP_DEVICE_OBJECT_ENTRY_H_
#define CHROME_BROWSER_MEDIA_GALLERIES_WIN_MTP_DEVICE_OBJECT_ENTRY_H_
+#include <stdint.h>
+
#include <vector>
-#include "base/basictypes.h"
#include "base/strings/string16.h"
#include "base/time/time.h"
@@ -19,7 +20,7 @@ struct MTPDeviceObjectEntry {
MTPDeviceObjectEntry(const base::string16& object_id,
const base::string16& object_name,
bool is_directory,
- int64 size,
+ int64_t size,
const base::Time& last_modified_time);
// The object identifier obtained using IEnumPortableDeviceObjectIDs::Next(),
@@ -33,7 +34,7 @@ struct MTPDeviceObjectEntry {
bool is_directory;
// The object file size in bytes, e.g. "882992".
- int64 size;
+ int64_t size;
// Last modified time of the object.
base::Time last_modified_time;

Powered by Google App Engine
This is Rietveld 408576698