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

Unified Diff: components/drive/search_metadata_unittest.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/search_metadata.h ('k') | components/drive/service/drive_api_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/drive/search_metadata_unittest.cc
diff --git a/components/drive/search_metadata_unittest.cc b/components/drive/search_metadata_unittest.cc
index 538d154c3fb9dc43608244ecfdfc0aa334877dd3..9079482840084b92c813a4c4da753c9d0bb9b9b7 100644
--- a/components/drive/search_metadata_unittest.cc
+++ b/components/drive/search_metadata_unittest.cc
@@ -4,9 +4,13 @@
#include "components/drive/search_metadata.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/i18n/string_search.h"
+#include "base/macros.h"
#include "base/memory/scoped_vector.h"
#include "base/run_loop.h"
#include "base/single_thread_task_runner.h"
@@ -132,7 +136,7 @@ class SearchMetadataTest : public testing::Test {
ResourceEntry GetFileEntry(const std::string& name,
const std::string& resource_id,
- int64 last_accessed,
+ int64_t last_accessed,
const std::string& parent_local_id) {
ResourceEntry entry;
entry.set_title(name);
@@ -144,7 +148,7 @@ class SearchMetadataTest : public testing::Test {
ResourceEntry GetDirectoryEntry(const std::string& name,
const std::string& resource_id,
- int64 last_accessed,
+ int64_t last_accessed,
const std::string& parent_local_id) {
ResourceEntry entry;
entry.set_title(name);
« no previous file with comments | « components/drive/search_metadata.h ('k') | components/drive/service/drive_api_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698