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

Unified Diff: components/drive/resource_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/resource_entry_conversion.cc ('k') | components/drive/resource_metadata.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/drive/resource_metadata.h
diff --git a/components/drive/resource_metadata.h b/components/drive/resource_metadata.h
index 3fe275138a95d071a4b9c7bc1e68aaa2745ac0a9..72608933caa2d8c2eacbfd51714d33bc39a0760a 100644
--- a/components/drive/resource_metadata.h
+++ b/components/drive/resource_metadata.h
@@ -5,11 +5,14 @@
#ifndef COMPONENTS_DRIVE_RESOURCE_METADATA_H_
#define COMPONENTS_DRIVE_RESOURCE_METADATA_H_
+#include <stdint.h>
+
#include <set>
#include <string>
#include <vector>
#include "base/files/file_path.h"
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/threading/thread_checker.h"
#include "components/drive/file_errors.h"
@@ -52,10 +55,10 @@ class ResourceMetadata {
FileError Reset();
// Returns the largest changestamp.
- FileError GetLargestChangestamp(int64* out_value);
+ FileError GetLargestChangestamp(int64_t* out_value);
// Sets the largest changestamp.
- FileError SetLargestChangestamp(int64 value);
+ FileError SetLargestChangestamp(int64_t value);
// Adds |entry| to the metadata tree based on its parent_local_id.
FileError AddEntry(const ResourceEntry& entry, std::string* out_id);
« no previous file with comments | « components/drive/resource_entry_conversion.cc ('k') | components/drive/resource_metadata.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698