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

Unified Diff: chrome/browser/sync_file_system/sync_file_metadata.h

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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/sync_file_system/sync_file_metadata.h
diff --git a/chrome/browser/sync_file_system/sync_file_metadata.h b/chrome/browser/sync_file_system/sync_file_metadata.h
index 7e3e6319c9a774b8f8299520ac464fedfde7b948..d382183c8839b59652902a875857384b0bd3c4c3 100644
--- a/chrome/browser/sync_file_system/sync_file_metadata.h
+++ b/chrome/browser/sync_file_system/sync_file_metadata.h
@@ -5,7 +5,8 @@
#ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_
#define CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_METADATA_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/time/time.h"
#include "chrome/browser/sync_file_system/file_change.h"
#include "storage/browser/fileapi/file_system_url.h"
@@ -16,12 +17,12 @@ class SyncFileMetadata {
public:
SyncFileMetadata();
SyncFileMetadata(SyncFileType file_type,
- int64 size,
+ int64_t size,
const base::Time& last_modified);
~SyncFileMetadata();
SyncFileType file_type;
- int64 size;
+ int64_t size;
base::Time last_modified;
bool operator==(const SyncFileMetadata& that) const;
« no previous file with comments | « chrome/browser/sync_file_system/sync_event_observer.h ('k') | chrome/browser/sync_file_system/sync_file_metadata.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698