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

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

Issue 1339803003: Move gcm_internals resources and constants to //components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix gritsettings Created 5 years, 3 months 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
(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
OLDNEW
« no previous file with comments | « components/gcm_driver/gcm_internals_constants.h ('k') | components/gcm_driver/resources/gcm_internals.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698