| 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 #include "chrome/browser/extensions/extension_processes_api_constants.h" | 5 #include "chrome/browser/extensions/api/processes/processes_api_constants.h" |
| 6 | 6 |
| 7 namespace extension_processes_api_constants { | 7 namespace extensions { |
| 8 |
| 9 namespace processes_api_constants { |
| 8 | 10 |
| 9 // Process object properties. | 11 // Process object properties. |
| 10 const char kCpuKey[] = "cpu"; | 12 const char kCpuKey[] = "cpu"; |
| 11 const char kCssCacheKey[] = "cssCache"; | 13 const char kCssCacheKey[] = "cssCache"; |
| 12 const char kFPSKey[] = "fps"; | 14 const char kFPSKey[] = "fps"; |
| 13 const char kIdKey[] = "id"; | 15 const char kIdKey[] = "id"; |
| 14 const char kImageCacheKey[] = "imageCache"; | 16 const char kImageCacheKey[] = "imageCache"; |
| 15 const char kJsMemoryAllocatedKey[] = "jsMemoryAllocated"; | 17 const char kJsMemoryAllocatedKey[] = "jsMemoryAllocated"; |
| 16 const char kJsMemoryUsedKey[] = "jsMemoryUsed"; | 18 const char kJsMemoryUsedKey[] = "jsMemoryUsed"; |
| 17 const char kNetworkKey[] = "network"; | 19 const char kNetworkKey[] = "network"; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 46 const char kOnUnresponsive[] = "experimental.processes.onUnresponsive"; | 48 const char kOnUnresponsive[] = "experimental.processes.onUnresponsive"; |
| 47 const char kOnUpdated[] = "experimental.processes.onUpdated"; | 49 const char kOnUpdated[] = "experimental.processes.onUpdated"; |
| 48 const char kOnUpdatedWithMemory[] = | 50 const char kOnUpdatedWithMemory[] = |
| 49 "experimental.processes.onUpdatedWithMemory"; | 51 "experimental.processes.onUpdatedWithMemory"; |
| 50 | 52 |
| 51 // Error strings. | 53 // Error strings. |
| 52 const char kExtensionNotSupported[] = | 54 const char kExtensionNotSupported[] = |
| 53 "The Processes extension API is not supported on this platform."; | 55 "The Processes extension API is not supported on this platform."; |
| 54 const char kProcessNotFound[] = "Process not found: *."; | 56 const char kProcessNotFound[] = "Process not found: *."; |
| 55 | 57 |
| 56 } // namespace extension_processes_api_constants | 58 } // namespace processes_api_constants |
| 59 |
| 60 } // namespace extensions |
| OLD | NEW |