summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_processes_api_constants.h
blob: cc70b1511086816b33567955b632320c989469e8 (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
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright (c) 2012 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.

// Constants used for the Processes API.

#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_

namespace extension_processes_api_constants {

// Process object properties.
extern const char kCpuKey[];
extern const char kCssCacheKey[];
extern const char kFPSKey[];
extern const char kIdKey[];
extern const char kImageCacheKey[];
extern const char kJsMemoryAllocatedKey[];
extern const char kJsMemoryUsedKey[];
extern const char kNetworkKey[];
extern const char kOsProcessIdKey[];
extern const char kPrivateMemoryKey[];
extern const char kProcessesKey[];
extern const char kProfileKey[];
extern const char kScriptCacheKey[];
extern const char kSqliteMemoryKey[];
extern const char kTabsListKey[];
extern const char kTypeKey[];

// Process types.
extern const char kProcessTypeBrowser[];
extern const char kProcessTypeExtension[];
extern const char kProcessTypeGPU[];
extern const char kProcessTypeNacl[];
extern const char kProcessTypeNotification[];
extern const char kProcessTypeOther[];
extern const char kProcessTypePlugin[];
extern const char kProcessTypeRenderer[];
extern const char kProcessTypeUtility[];
extern const char kProcessTypeWorker[];

// Cache object properties.
extern const char kCacheLiveSize[];
extern const char kCacheSize[];

// Event names.
extern const char kOnCreated[];
extern const char kOnExited[];
extern const char kOnUnresponsive[];
extern const char kOnUpdated[];
extern const char kOnUpdatedWithMemory[];

// Error strings.
extern const char kExtensionNotSupported[];
extern const char kProcessNotFound[];

};  // namespace extension_processes_api_constants

#endif  // CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_