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

Unified Diff: components/drive/resource_metadata_storage.h

Issue 1546143002: Switch to standard integer types in components/, part 1 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
« no previous file with comments | « components/drive/resource_metadata.cc ('k') | components/drive/resource_metadata_storage.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « components/drive/resource_metadata.cc ('k') | components/drive/resource_metadata_storage.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698