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

Unified Diff: components/drive/file_system_metadata.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/file_system_interface.h ('k') | components/drive/file_system_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/drive/file_system_metadata.h
diff --git a/components/drive/file_system_metadata.h b/components/drive/file_system_metadata.h
index 199f1061ce86033632ad6c377bcf6f93e2a7ba28..b1eca7e2e0d7f7dfc4ea345f47c39b187603e061 100644
--- a/components/drive/file_system_metadata.h
+++ b/components/drive/file_system_metadata.h
@@ -5,7 +5,8 @@
#ifndef COMPONENTS_DRIVE_FILE_SYSTEM_METADATA_H_
#define COMPONENTS_DRIVE_FILE_SYSTEM_METADATA_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/time/time.h"
#include "components/drive/file_errors.h"
@@ -18,7 +19,7 @@ struct FileSystemMetadata {
// The largest changestamp that the file system holds (may be different
// from the one on the server)
- int64 largest_changestamp;
+ int64_t largest_changestamp;
// True if the resource metadata is now being fetched from the server.
bool refreshing;
« no previous file with comments | « components/drive/file_system_interface.h ('k') | components/drive/file_system_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698