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_EXTENSION_PROCESSES_API_CONSTANTS_H_ | 7 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_ |
8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_ | 8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_ |
9 #pragma once | |
10 | 9 |
11 namespace extension_processes_api_constants { | 10 namespace extension_processes_api_constants { |
12 | 11 |
13 // Process object properties. | 12 // Process object properties. |
14 extern const char kCpuKey[]; | 13 extern const char kCpuKey[]; |
15 extern const char kCssCacheKey[]; | 14 extern const char kCssCacheKey[]; |
16 extern const char kFPSKey[]; | 15 extern const char kFPSKey[]; |
17 extern const char kIdKey[]; | 16 extern const char kIdKey[]; |
18 extern const char kImageCacheKey[]; | 17 extern const char kImageCacheKey[]; |
19 extern const char kJsMemoryAllocatedKey[]; | 18 extern const char kJsMemoryAllocatedKey[]; |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 extern const char kOnUpdated[]; | 50 extern const char kOnUpdated[]; |
52 extern const char kOnUpdatedWithMemory[]; | 51 extern const char kOnUpdatedWithMemory[]; |
53 | 52 |
54 // Error strings. | 53 // Error strings. |
55 extern const char kExtensionNotSupported[]; | 54 extern const char kExtensionNotSupported[]; |
56 extern const char kProcessNotFound[]; | 55 extern const char kProcessNotFound[]; |
57 | 56 |
58 }; // namespace extension_processes_api_constants | 57 }; // namespace extension_processes_api_constants |
59 | 58 |
60 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_ | 59 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_ |
OLD | NEW |