OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Constants used for the Processes API. | 5 // Constants used for the Processes API. |
6 | 6 |
7 #ifndef CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_ | 7 #ifndef CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_ |
8 #define CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_ | 8 #define CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_ |
9 | 9 |
10 namespace extensions { | 10 namespace extensions { |
11 | 11 |
12 namespace processes_api_constants { | 12 namespace processes_api_constants { |
13 | 13 |
14 // Process object properties. | 14 // Process object properties. |
15 extern const char kCpuKey[]; | 15 extern const char kCpuKey[]; |
16 extern const char kCssCacheKey[]; | 16 extern const char kCssCacheKey[]; |
17 extern const char kFPSKey[]; | 17 extern const char kFPSKey[]; |
18 extern const char kIdKey[]; | 18 extern const char kIdKey[]; |
19 extern const char kImageCacheKey[]; | 19 extern const char kImageCacheKey[]; |
20 extern const char kJsMemoryAllocatedKey[]; | 20 extern const char kJsMemoryAllocatedKey[]; |
21 extern const char kJsMemoryUsedKey[]; | 21 extern const char kJsMemoryUsedKey[]; |
| 22 extern const char kNaClDebugPortKey[]; |
22 extern const char kNetworkKey[]; | 23 extern const char kNetworkKey[]; |
23 extern const char kOsProcessIdKey[]; | 24 extern const char kOsProcessIdKey[]; |
24 extern const char kPrivateMemoryKey[]; | 25 extern const char kPrivateMemoryKey[]; |
25 extern const char kProfileKey[]; | 26 extern const char kProfileKey[]; |
26 extern const char kScriptCacheKey[]; | 27 extern const char kScriptCacheKey[]; |
27 extern const char kSqliteMemoryKey[]; | 28 extern const char kSqliteMemoryKey[]; |
28 extern const char kTabsListKey[]; | 29 extern const char kTabsListKey[]; |
| 30 extern const char kTitleKey[]; |
29 extern const char kTypeKey[]; | 31 extern const char kTypeKey[]; |
30 | 32 |
31 // Process types. | 33 // Process types. |
32 extern const char kProcessTypeBrowser[]; | 34 extern const char kProcessTypeBrowser[]; |
33 extern const char kProcessTypeExtension[]; | 35 extern const char kProcessTypeExtension[]; |
34 extern const char kProcessTypeGPU[]; | 36 extern const char kProcessTypeGPU[]; |
35 extern const char kProcessTypeNacl[]; | 37 extern const char kProcessTypeNacl[]; |
36 extern const char kProcessTypeNotification[]; | 38 extern const char kProcessTypeNotification[]; |
37 extern const char kProcessTypeOther[]; | 39 extern const char kProcessTypeOther[]; |
38 extern const char kProcessTypePlugin[]; | 40 extern const char kProcessTypePlugin[]; |
(...skipping 14 matching lines...) Expand all Loading... |
53 | 55 |
54 // Error strings. | 56 // Error strings. |
55 extern const char kExtensionNotSupported[]; | 57 extern const char kExtensionNotSupported[]; |
56 extern const char kProcessNotFound[]; | 58 extern const char kProcessNotFound[]; |
57 | 59 |
58 } // namespace processes_api_constants | 60 } // namespace processes_api_constants |
59 | 61 |
60 } // namespace extensions | 62 } // namespace extensions |
61 | 63 |
62 #endif // CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_ | 64 #endif // CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_ |
OLD | NEW |