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 "components/gcm_driver/gcm_internals_constants.h" | 5 #include "components/gcm_driver/gcm_internals_constants.h" |
6 | 6 |
7 namespace gcm_driver { | 7 namespace gcm_driver { |
8 | 8 |
9 // Resource paths. | 9 // Resource paths. |
10 const char kGcmInternalsCSS[] = "gcm_internals.css"; | 10 const char kGcmInternalsCSS[] = "gcm_internals.css"; |
(...skipping 15 matching lines...) Expand all Loading... |
26 const char kGcmClientState[] = "gcmClientState"; | 26 const char kGcmClientState[] = "gcmClientState"; |
27 const char kGcmEnabled[] = "gcmEnabled"; | 27 const char kGcmEnabled[] = "gcmEnabled"; |
28 const char kIsRecording[] = "isRecording"; | 28 const char kIsRecording[] = "isRecording"; |
29 const char kProfileServiceCreated[] = "profileServiceCreated"; | 29 const char kProfileServiceCreated[] = "profileServiceCreated"; |
30 const char kReceiveInfo[] = "receiveInfo"; | 30 const char kReceiveInfo[] = "receiveInfo"; |
31 const char kRegisteredAppIds[] = "registeredAppIds"; | 31 const char kRegisteredAppIds[] = "registeredAppIds"; |
32 const char kRegistrationInfo[] = "registrationInfo"; | 32 const char kRegistrationInfo[] = "registrationInfo"; |
33 const char kResendQueueSize[] = "resendQueueSize"; | 33 const char kResendQueueSize[] = "resendQueueSize"; |
34 const char kSendInfo[] = "sendInfo"; | 34 const char kSendInfo[] = "sendInfo"; |
35 const char kSendQueueSize[] = "sendQueueSize"; | 35 const char kSendQueueSize[] = "sendQueueSize"; |
| 36 const char kDecryptionFailureInfo[] = "decryptionFailureInfo"; |
36 | 37 |
37 } // namespace gcm_driver | 38 } // namespace gcm_driver |
OLD | NEW |