| 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 #ifndef COMPONENTS_GCM_DRIVER_GCM_INTERNALS_CONSTANTS_H_ | 5 #ifndef COMPONENTS_GCM_DRIVER_GCM_INTERNALS_CONSTANTS_H_ |
| 6 #define COMPONENTS_GCM_DRIVER_GCM_INTERNALS_CONSTANTS_H_ | 6 #define COMPONENTS_GCM_DRIVER_GCM_INTERNALS_CONSTANTS_H_ |
| 7 | 7 |
| 8 namespace gcm_driver { | 8 namespace gcm_driver { |
| 9 | 9 |
| 10 // Resource paths. | 10 // Resource paths. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 extern const char kAndroidId[]; | 23 extern const char kAndroidId[]; |
| 24 extern const char kCheckinInfo[]; | 24 extern const char kCheckinInfo[]; |
| 25 extern const char kConnectionClientCreated[]; | 25 extern const char kConnectionClientCreated[]; |
| 26 extern const char kConnectionInfo[]; | 26 extern const char kConnectionInfo[]; |
| 27 extern const char kConnectionState[]; | 27 extern const char kConnectionState[]; |
| 28 extern const char kDeviceInfo[]; | 28 extern const char kDeviceInfo[]; |
| 29 extern const char kGcmClientCreated[]; | 29 extern const char kGcmClientCreated[]; |
| 30 extern const char kGcmClientState[]; | 30 extern const char kGcmClientState[]; |
| 31 extern const char kGcmEnabled[]; | 31 extern const char kGcmEnabled[]; |
| 32 extern const char kIsRecording[]; | 32 extern const char kIsRecording[]; |
| 33 extern const char kLastCheckin[]; |
| 34 extern const char kNextCheckin[]; |
| 33 extern const char kProfileServiceCreated[]; | 35 extern const char kProfileServiceCreated[]; |
| 34 extern const char kReceiveInfo[]; | 36 extern const char kReceiveInfo[]; |
| 35 extern const char kRegisteredAppIds[]; | 37 extern const char kRegisteredAppIds[]; |
| 36 extern const char kRegistrationInfo[]; | 38 extern const char kRegistrationInfo[]; |
| 37 extern const char kResendQueueSize[]; | 39 extern const char kResendQueueSize[]; |
| 38 extern const char kSendInfo[]; | 40 extern const char kSendInfo[]; |
| 39 extern const char kSendQueueSize[]; | 41 extern const char kSendQueueSize[]; |
| 40 extern const char kDecryptionFailureInfo[]; | 42 extern const char kDecryptionFailureInfo[]; |
| 41 | 43 |
| 42 } // namespace gcm_driver | 44 } // namespace gcm_driver |
| 43 | 45 |
| 44 #endif // COMPONENTS_GCM_DRIVER_GCM_INTERNALS_CONSTANTS_H_ | 46 #endif // COMPONENTS_GCM_DRIVER_GCM_INTERNALS_CONSTANTS_H_ |
| OLD | NEW |