| Index: components/drive/resource_metadata_storage.h
|
| diff --git a/components/drive/resource_metadata_storage.h b/components/drive/resource_metadata_storage.h
|
| index 8f8c695ccd3f4ed592dcedf2bc696217db38cb33..fd10c484cb0277157207af4ca95cd7eeeb12ce9b 100644
|
| --- a/components/drive/resource_metadata_storage.h
|
| +++ b/components/drive/resource_metadata_storage.h
|
| @@ -5,11 +5,13 @@
|
| #ifndef COMPONENTS_DRIVE_RESOURCE_METADATA_STORAGE_H_
|
| #define COMPONENTS_DRIVE_RESOURCE_METADATA_STORAGE_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
| #include <vector>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/files/file_path.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "components/drive/drive.pb.h"
|
| @@ -101,10 +103,10 @@ class ResourceMetadataStorage {
|
| void RecoverCacheInfoFromTrashedResourceMap(RecoveredCacheInfoMap* out_info);
|
|
|
| // Sets the largest changestamp.
|
| - FileError SetLargestChangestamp(int64 largest_changestamp);
|
| + FileError SetLargestChangestamp(int64_t largest_changestamp);
|
|
|
| // Gets the largest changestamp.
|
| - FileError GetLargestChangestamp(int64* largest_changestamp);
|
| + FileError GetLargestChangestamp(int64_t* largest_changestamp);
|
|
|
| // Puts the entry to this storage.
|
| FileError PutEntry(const ResourceEntry& entry);
|
|
|