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

Unified Diff: components/drive/change_list_processor.cc

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/change_list_processor.h ('k') | components/drive/change_list_processor_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/drive/change_list_processor.cc
diff --git a/components/drive/change_list_processor.cc b/components/drive/change_list_processor.cc
index 79aab646f3414c19a139fb145fe9d2deb19e1a39..f41c0e846419b2bdb847888025252b92b6cbcbee 100644
--- a/components/drive/change_list_processor.cc
+++ b/components/drive/change_list_processor.cc
@@ -4,6 +4,8 @@
#include "components/drive/change_list_processor.h"
+#include <stddef.h>
+
#include "base/metrics/histogram.h"
#include "base/strings/string_number_conversions.h"
#include "base/synchronization/cancellation_flag.h"
@@ -130,7 +132,7 @@ FileError ChangeListProcessor::Apply(
bool is_delta_update) {
DCHECK(about_resource);
- int64 largest_changestamp = 0;
+ int64_t largest_changestamp = 0;
if (is_delta_update) {
if (!change_lists.empty()) {
// The changestamp appears in the first page of the change list.
@@ -199,7 +201,7 @@ FileError ChangeListProcessor::Apply(
}
FileError ChangeListProcessor::ApplyEntryMap(
- int64 changestamp,
+ int64_t changestamp,
scoped_ptr<google_apis::AboutResource> about_resource) {
DCHECK(about_resource);
« no previous file with comments | « components/drive/change_list_processor.h ('k') | components/drive/change_list_processor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698