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

Unified Diff: google_apis/gcm/engine/gcm_store_impl_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
Index: google_apis/gcm/engine/gcm_store_impl_unittest.cc
diff --git a/google_apis/gcm/engine/gcm_store_impl_unittest.cc b/google_apis/gcm/engine/gcm_store_impl_unittest.cc
index 9b748552faffbfb07d6ab03ec4f76281a9ce2b2b..62bee771f25bba7ce82d9c08b7345a753aa067b0 100644
--- a/google_apis/gcm/engine/gcm_store_impl_unittest.cc
+++ b/google_apis/gcm/engine/gcm_store_impl_unittest.cc
@@ -4,6 +4,8 @@
#include "google_apis/gcm/engine/gcm_store_impl.h"
+#include <stdint.h>
+
#include <string>
#include <vector>
@@ -38,8 +40,8 @@ const char kAppName2[] = "my_app_2";
// Category name for testing.
const char kCategoryName[] = "my_category";
-const uint64 kDeviceId = 22;
-const uint64 kDeviceToken = 55;
+const uint64_t kDeviceId = 22;
+const uint64_t kDeviceToken = 55;
class GCMStoreImplTest : public testing::Test {
public:
@@ -65,7 +67,7 @@ class GCMStoreImplTest : public testing::Test {
base::ThreadTaskRunnerHandle task_runner_handle_;
base::ScopedTempDir temp_directory_;
bool expected_success_;
- uint64 next_persistent_id_;
+ uint64_t next_persistent_id_;
};
GCMStoreImplTest::GCMStoreImplTest()
« no previous file with comments | « google_apis/gcm/engine/gcm_store_impl.cc ('k') | google_apis/gcm/engine/gcm_unregistration_request_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698