OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "google_apis/gcm/engine/gservices_switches.h" | 5 #include "google_apis/gcm/engine/gservices_switches.h" |
6 | 6 |
7 namespace switches { | 7 namespace switches { |
8 | 8 |
| 9 // Sets the checkin service endpoint that will be used for performing Google |
| 10 // Cloud Messaging checkins. |
| 11 const char kGCMCheckinURL[] = "gcm-checkin-url"; |
| 12 |
| 13 // Sets the Mobile Connection Server endpoint that will be used for Google |
| 14 // Cloud Messaging. |
| 15 const char kGCMMCSEndpoint[] = "gcm-mcs-endpoint"; |
| 16 |
9 // Sets the registration endpoint that will be used for creating new Google | 17 // Sets the registration endpoint that will be used for creating new Google |
10 // Cloud Messaging registrations. | 18 // Cloud Messaging registrations. |
11 const char kGCMRegistrationURL[] = "gcm-registration-url"; | 19 const char kGCMRegistrationURL[] = "gcm-registration-url"; |
12 | 20 |
13 } // namespace switches | 21 } // namespace switches |
OLD | NEW |