| 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;
|
|
|