| 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_API_PROCESSES_PROCESSES_API_CONSTANTS_H_ |
| 8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_ | 8 #define CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_ |
| 9 | 9 |
| 10 namespace extension_processes_api_constants { | 10 namespace extensions { |
| 11 |
| 12 namespace processes_api_constants { |
| 11 | 13 |
| 12 // Process object properties. | 14 // Process object properties. |
| 13 extern const char kCpuKey[]; | 15 extern const char kCpuKey[]; |
| 14 extern const char kCssCacheKey[]; | 16 extern const char kCssCacheKey[]; |
| 15 extern const char kFPSKey[]; | 17 extern const char kFPSKey[]; |
| 16 extern const char kIdKey[]; | 18 extern const char kIdKey[]; |
| 17 extern const char kImageCacheKey[]; | 19 extern const char kImageCacheKey[]; |
| 18 extern const char kJsMemoryAllocatedKey[]; | 20 extern const char kJsMemoryAllocatedKey[]; |
| 19 extern const char kJsMemoryUsedKey[]; | 21 extern const char kJsMemoryUsedKey[]; |
| 20 extern const char kNetworkKey[]; | 22 extern const char kNetworkKey[]; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 47 extern const char kOnCreated[]; | 49 extern const char kOnCreated[]; |
| 48 extern const char kOnExited[]; | 50 extern const char kOnExited[]; |
| 49 extern const char kOnUnresponsive[]; | 51 extern const char kOnUnresponsive[]; |
| 50 extern const char kOnUpdated[]; | 52 extern const char kOnUpdated[]; |
| 51 extern const char kOnUpdatedWithMemory[]; | 53 extern const char kOnUpdatedWithMemory[]; |
| 52 | 54 |
| 53 // Error strings. | 55 // Error strings. |
| 54 extern const char kExtensionNotSupported[]; | 56 extern const char kExtensionNotSupported[]; |
| 55 extern const char kProcessNotFound[]; | 57 extern const char kProcessNotFound[]; |
| 56 | 58 |
| 57 }; // namespace extension_processes_api_constants | 59 } // namespace processes_api_constants |
| 58 | 60 |
| 59 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_ | 61 } // namespace extensions |
| 62 |
| 63 #endif // CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_ |
| OLD | NEW |