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

Unified Diff: components/drive/directory_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/drive/change_list_processor_unittest.cc ('k') | components/drive/directory_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/drive/directory_loader.h
diff --git a/components/drive/directory_loader.h b/components/drive/directory_loader.h
index 32d72ef991f8d8c58180f6e15b150833865ab22a..776c5fd4bd702b8c9c973aea9c2c77cfb1ba0cea 100644
--- a/components/drive/directory_loader.h
+++ b/components/drive/directory_loader.h
@@ -5,12 +5,15 @@
#ifndef COMPONENTS_DRIVE_DIRECTORY_LOADER_H_
#define COMPONENTS_DRIVE_DIRECTORY_LOADER_H_
+#include <stdint.h>
+
#include <map>
#include <set>
#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/observer_list.h"
@@ -90,7 +93,7 @@ class DirectoryLoader {
scoped_ptr<google_apis::AboutResource> about_resource,
const std::string& local_id,
const ResourceEntry* entry,
- const int64* local_changestamp,
+ const int64_t* local_changestamp,
FileError error);
// Part of ReadDirectory().
« no previous file with comments | « components/drive/change_list_processor_unittest.cc ('k') | components/drive/directory_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698