| Index: google_apis/gcm/engine/registration_request_unittest.cc
|
| diff --git a/google_apis/gcm/engine/registration_request_unittest.cc b/google_apis/gcm/engine/registration_request_unittest.cc
|
| index 495b1e18ad3f5ac9810cad50f0824271bc0568aa..a4e103961e63f230b7c620bba94cd3e40a1a2856 100644
|
| --- a/google_apis/gcm/engine/registration_request_unittest.cc
|
| +++ b/google_apis/gcm/engine/registration_request_unittest.cc
|
| @@ -2,6 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <map>
|
| #include <string>
|
| #include <vector>
|
| @@ -20,12 +22,12 @@
|
| namespace gcm {
|
|
|
| namespace {
|
| -const uint64 kAndroidId = 42UL;
|
| +const uint64_t kAndroidId = 42UL;
|
| const char kAppId[] = "TestAppId";
|
| const char kDeveloperId[] = "Project1";
|
| const char kLoginHeader[] = "AidLogin";
|
| const char kRegistrationURL[] = "http://foo.bar/register";
|
| -const uint64 kSecurityToken = 77UL;
|
| +const uint64_t kSecurityToken = 77UL;
|
| const int kGCMVersion = 40;
|
| const char kInstanceId[] = "IID1";
|
| const char kScope[] = "GCM";
|
|
|