OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "components/gcm_driver/gcm_internals_constants.h" |
| 6 |
| 7 namespace gcm_driver { |
| 8 |
| 9 // Resource paths. |
| 10 const char kGcmInternalsCSS[] = "gcm_internals.css"; |
| 11 const char kGcmInternalsJS[] = "gcm_internals.js"; |
| 12 |
| 13 // Message handlers. |
| 14 const char kGetGcmInternalsInfo[] = "getGcmInternalsInfo"; |
| 15 const char kSetGcmInternalsInfo[] = "gcmInternals.setGcmInternalsInfo"; |
| 16 const char kSetGcmInternalsRecording[] = "setGcmInternalsRecording"; |
| 17 |
| 18 // GCM internal info. |
| 19 const char kAndroidId[] = "androidId"; |
| 20 const char kCheckinInfo[] = "checkinInfo"; |
| 21 const char kConnectionClientCreated[] = "connectionClientCreated"; |
| 22 const char kConnectionInfo[] = "connectionInfo"; |
| 23 const char kConnectionState[] = "connectionState"; |
| 24 const char kDeviceInfo[] = "deviceInfo"; |
| 25 const char kGcmClientCreated[] = "gcmClientCreated"; |
| 26 const char kGcmClientState[] = "gcmClientState"; |
| 27 const char kGcmEnabled[] = "gcmEnabled"; |
| 28 const char kIsRecording[] = "isRecording"; |
| 29 const char kProfileServiceCreated[] = "profileServiceCreated"; |
| 30 const char kReceiveInfo[] = "receiveInfo"; |
| 31 const char kRegisteredAppIds[] = "registeredAppIds"; |
| 32 const char kRegistrationInfo[] = "registrationInfo"; |
| 33 const char kResendQueueSize[] = "resendQueueSize"; |
| 34 const char kSendInfo[] = "sendInfo"; |
| 35 const char kSendQueueSize[] = "sendQueueSize"; |
| 36 |
| 37 } // namespace gcm_driver |
OLD | NEW |