Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Side by Side Diff: components/gcm_driver/gcm_internals_constants.cc

Issue 2450383003: [GCM] Reset store on checkin rejection and add checkin state to internals (Closed)
Patch Set: Fix mcs probe Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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";
11 const char kGcmInternalsJS[] = "gcm_internals.js"; 11 const char kGcmInternalsJS[] = "gcm_internals.js";
12 12
13 // Message handlers. 13 // Message handlers.
14 const char kGetGcmInternalsInfo[] = "getGcmInternalsInfo"; 14 const char kGetGcmInternalsInfo[] = "getGcmInternalsInfo";
15 const char kSetGcmInternalsInfo[] = "gcmInternals.setGcmInternalsInfo"; 15 const char kSetGcmInternalsInfo[] = "gcmInternals.setGcmInternalsInfo";
16 const char kSetGcmInternalsRecording[] = "setGcmInternalsRecording"; 16 const char kSetGcmInternalsRecording[] = "setGcmInternalsRecording";
17 17
18 // GCM internal info. 18 // GCM internal info.
19 const char kAndroidId[] = "androidId"; 19 const char kAndroidId[] = "androidId";
20 const char kCheckinInfo[] = "checkinInfo"; 20 const char kCheckinInfo[] = "checkinInfo";
21 const char kConnectionClientCreated[] = "connectionClientCreated"; 21 const char kConnectionClientCreated[] = "connectionClientCreated";
22 const char kConnectionInfo[] = "connectionInfo"; 22 const char kConnectionInfo[] = "connectionInfo";
23 const char kConnectionState[] = "connectionState"; 23 const char kConnectionState[] = "connectionState";
24 const char kDeviceInfo[] = "deviceInfo"; 24 const char kDeviceInfo[] = "deviceInfo";
25 const char kGcmClientCreated[] = "gcmClientCreated"; 25 const char kGcmClientCreated[] = "gcmClientCreated";
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 kLastCheckin[] = "lastCheckin";
30 const char kNextCheckin[] = "nextCheckin";
29 const char kProfileServiceCreated[] = "profileServiceCreated"; 31 const char kProfileServiceCreated[] = "profileServiceCreated";
30 const char kReceiveInfo[] = "receiveInfo"; 32 const char kReceiveInfo[] = "receiveInfo";
31 const char kRegisteredAppIds[] = "registeredAppIds"; 33 const char kRegisteredAppIds[] = "registeredAppIds";
32 const char kRegistrationInfo[] = "registrationInfo"; 34 const char kRegistrationInfo[] = "registrationInfo";
33 const char kResendQueueSize[] = "resendQueueSize"; 35 const char kResendQueueSize[] = "resendQueueSize";
34 const char kSendInfo[] = "sendInfo"; 36 const char kSendInfo[] = "sendInfo";
35 const char kSendQueueSize[] = "sendQueueSize"; 37 const char kSendQueueSize[] = "sendQueueSize";
36 const char kDecryptionFailureInfo[] = "decryptionFailureInfo"; 38 const char kDecryptionFailureInfo[] = "decryptionFailureInfo";
37 39
38 } // namespace gcm_driver 40 } // namespace gcm_driver
OLDNEW
« no previous file with comments | « components/gcm_driver/gcm_internals_constants.h ('k') | components/gcm_driver/gcm_internals_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698