blob: 54623bc4303f7aafa766c9ec705312c14e0cd795 [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#ifndef COMPONENTS_GCM_DRIVER_GCM_INTERNALS_CONSTANTS_H_
6#define COMPONENTS_GCM_DRIVER_GCM_INTERNALS_CONSTANTS_H_
7
8namespace gcm_driver {
9
10// Resource paths.
11// Must match the resource file names.
12extern const char kGcmInternalsCSS[];
13extern const char kGcmInternalsJS[];
14
15// Message handlers.
16// Must match the constants used in the resource files.
17extern const char kGetGcmInternalsInfo[];
18extern const char kSetGcmInternalsInfo[];
19extern const char kSetGcmInternalsRecording[];
20
21// GCM internal info.
22// Must match the constants used in the resource files.
23extern const char kAndroidId[];
Peter Beverloof9469182018-05-03 20:46:5224extern const char kAndroidSecret[];
drogere89640c42015-09-15 18:57:4125extern const char kCheckinInfo[];
26extern const char kConnectionClientCreated[];
27extern const char kConnectionInfo[];
28extern const char kConnectionState[];
29extern const char kDeviceInfo[];
30extern const char kGcmClientCreated[];
31extern const char kGcmClientState[];
32extern const char kGcmEnabled[];
33extern const char kIsRecording[];
zea76342abf2016-11-01 17:26:0434extern const char kLastCheckin[];
35extern const char kNextCheckin[];
drogere89640c42015-09-15 18:57:4136extern const char kProfileServiceCreated[];
37extern const char kReceiveInfo[];
38extern const char kRegisteredAppIds[];
39extern const char kRegistrationInfo[];
40extern const char kResendQueueSize[];
41extern const char kSendInfo[];
42extern const char kSendQueueSize[];
peteree284ba52016-02-01 11:53:2843extern const char kDecryptionFailureInfo[];
drogere89640c42015-09-15 18:57:4144
45} // namespace gcm_driver
46
47#endif // COMPONENTS_GCM_DRIVER_GCM_INTERNALS_CONSTANTS_H_