blob: b3017f802d758773a25f86d58f5f374c8dcb099f [file] [log] [blame]
drogere89640c42015-09-15 18:57:411// 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
7namespace gcm_driver {
8
9// Resource paths.
10const char kGcmInternalsCSS[] = "gcm_internals.css";
11const char kGcmInternalsJS[] = "gcm_internals.js";
12
13// Message handlers.
14const char kGetGcmInternalsInfo[] = "getGcmInternalsInfo";
15const char kSetGcmInternalsInfo[] = "gcmInternals.setGcmInternalsInfo";
16const char kSetGcmInternalsRecording[] = "setGcmInternalsRecording";
17
18// GCM internal info.
19const char kAndroidId[] = "androidId";
20const char kCheckinInfo[] = "checkinInfo";
21const char kConnectionClientCreated[] = "connectionClientCreated";
22const char kConnectionInfo[] = "connectionInfo";
23const char kConnectionState[] = "connectionState";
24const char kDeviceInfo[] = "deviceInfo";
25const char kGcmClientCreated[] = "gcmClientCreated";
26const char kGcmClientState[] = "gcmClientState";
27const char kGcmEnabled[] = "gcmEnabled";
28const char kIsRecording[] = "isRecording";
zea76342abf2016-11-01 17:26:0429const char kLastCheckin[] = "lastCheckin";
30const char kNextCheckin[] = "nextCheckin";
drogere89640c42015-09-15 18:57:4131const char kProfileServiceCreated[] = "profileServiceCreated";
32const char kReceiveInfo[] = "receiveInfo";
33const char kRegisteredAppIds[] = "registeredAppIds";
34const char kRegistrationInfo[] = "registrationInfo";
35const char kResendQueueSize[] = "resendQueueSize";
36const char kSendInfo[] = "sendInfo";
37const char kSendQueueSize[] = "sendQueueSize";
peteree284ba52016-02-01 11:53:2838const char kDecryptionFailureInfo[] = "decryptionFailureInfo";
drogere89640c42015-09-15 18:57:4139
40} // namespace gcm_driver