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

Unified Diff: google_apis/drive/drive_api_url_generator_unittest.cc

Issue 1548673002: Switch to standard integer types in google_apis/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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 | « google_apis/drive/drive_api_url_generator.cc ('k') | google_apis/drive/files_list_request_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/drive/drive_api_url_generator_unittest.cc
diff --git a/google_apis/drive/drive_api_url_generator_unittest.cc b/google_apis/drive/drive_api_url_generator_unittest.cc
index 1240b245ee4b34a62a09c7d5f266947e7208af93..3d63370ca60d75f6bc67f0cada8f03e8fb50594c 100644
--- a/google_apis/drive/drive_api_url_generator_unittest.cc
+++ b/google_apis/drive/drive_api_url_generator_unittest.cc
@@ -4,6 +4,10 @@
#include "google_apis/drive/drive_api_url_generator.h"
+#include <stddef.h>
+#include <stdint.h>
+
+#include "base/macros.h"
#include "google_apis/drive/test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
@@ -201,7 +205,7 @@ TEST_F(DriveApiUrlGeneratorTest, GetChangesListUrl) {
bool include_deleted;
int max_results;
const std::string page_token;
- int64 start_change_id;
+ int64_t start_change_id;
const std::string expected_query;
};
const TestPattern kTestPatterns[] = {
« no previous file with comments | « google_apis/drive/drive_api_url_generator.cc ('k') | google_apis/drive/files_list_request_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698