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

Unified Diff: components/drive/change_list_loader.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/domain_reliability/util.cc ('k') | components/drive/change_list_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/drive/change_list_loader.h
diff --git a/components/drive/change_list_loader.h b/components/drive/change_list_loader.h
index 16882cfa2f1bf1521fc20908eeade39d821010ce..07287b51bf01e46d88cd99f7db88502063519dee 100644
--- a/components/drive/change_list_loader.h
+++ b/components/drive/change_list_loader.h
@@ -5,10 +5,13 @@
#ifndef COMPONENTS_DRIVE_CHANGE_LIST_LOADER_H_
#define COMPONENTS_DRIVE_CHANGE_LIST_LOADER_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
#include "base/callback.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/scoped_vector.h"
@@ -177,10 +180,10 @@ class ChangeListLoader {
// Starts the resource metadata loading and calls |callback| when it's done.
void Load(const FileOperationCallback& callback);
void LoadAfterGetLargestChangestamp(bool is_initial_load,
- const int64* local_changestamp,
+ const int64_t* local_changestamp,
FileError error);
void LoadAfterGetAboutResource(
- int64 local_changestamp,
+ int64_t local_changestamp,
google_apis::DriveApiErrorCode status,
scoped_ptr<google_apis::AboutResource> about_resource);
@@ -199,7 +202,7 @@ class ChangeListLoader {
// Part of LoadFromServerIfNeeded().
// Starts loading the change list since |start_changestamp|, or the full
// resource list if |start_changestamp| is zero.
- void LoadChangeListFromServer(int64 start_changestamp);
+ void LoadChangeListFromServer(int64_t start_changestamp);
// Part of LoadChangeListFromServer().
// Called when the entire change list is loaded.
« no previous file with comments | « components/domain_reliability/util.cc ('k') | components/drive/change_list_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698