summaryrefslogtreecommitdiff
path: root/chromium/components/gcm_driver/gcm_internals_constants.h
blob: 54623bc4303f7aafa766c9ec705312c14e0cd795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_GCM_DRIVER_GCM_INTERNALS_CONSTANTS_H_
#define COMPONENTS_GCM_DRIVER_GCM_INTERNALS_CONSTANTS_H_

namespace gcm_driver {

// Resource paths.
// Must match the resource file names.
extern const char kGcmInternalsCSS[];
extern const char kGcmInternalsJS[];

// Message handlers.
// Must match the constants used in the resource files.
extern const char kGetGcmInternalsInfo[];
extern const char kSetGcmInternalsInfo[];
extern const char kSetGcmInternalsRecording[];

// GCM internal info.
// Must match the constants used in the resource files.
extern const char kAndroidId[];
extern const char kAndroidSecret[];
extern const char kCheckinInfo[];
extern const char kConnectionClientCreated[];
extern const char kConnectionInfo[];
extern const char kConnectionState[];
extern const char kDeviceInfo[];
extern const char kGcmClientCreated[];
extern const char kGcmClientState[];
extern const char kGcmEnabled[];
extern const char kIsRecording[];
extern const char kLastCheckin[];
extern const char kNextCheckin[];
extern const char kProfileServiceCreated[];
extern const char kReceiveInfo[];
extern const char kRegisteredAppIds[];
extern const char kRegistrationInfo[];
extern const char kResendQueueSize[];
extern const char kSendInfo[];
extern const char kSendQueueSize[];
extern const char kDecryptionFailureInfo[];

}  // namespace gcm_driver

#endif  // COMPONENTS_GCM_DRIVER_GCM_INTERNALS_CONSTANTS_H_