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

Unified Diff: google_apis/gcm/base/mcs_message_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/gcm/base/mcs_message.cc ('k') | google_apis/gcm/base/mcs_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/gcm/base/mcs_message_unittest.cc
diff --git a/google_apis/gcm/base/mcs_message_unittest.cc b/google_apis/gcm/base/mcs_message_unittest.cc
index 4dd52d6adde07d8e5c15787253633e1d5f0d548f..c27a7c5801b596fc9b0fd611a1305001f2c1590d 100644
--- a/google_apis/gcm/base/mcs_message_unittest.cc
+++ b/google_apis/gcm/base/mcs_message_unittest.cc
@@ -4,6 +4,8 @@
#include "google_apis/gcm/base/mcs_message.h"
+#include <stdint.h>
+
#include "base/logging.h"
#include "base/test/test_simple_task_runner.h"
#include "base/thread_task_runner_handle.h"
@@ -13,8 +15,8 @@
namespace gcm {
-const uint64 kAndroidId = 12345;
-const uint64 kSecret = 54321;
+const uint64_t kAndroidId = 12345;
+const uint64_t kSecret = 54321;
class MCSMessageTest : public testing::Test {
public:
« no previous file with comments | « google_apis/gcm/base/mcs_message.cc ('k') | google_apis/gcm/base/mcs_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698