| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/extension_processes_api_constants.h" |
| 6 | 6 |
| 7 namespace extension_processes_api_constants { | 7 namespace extension_processes_api_constants { |
| 8 | 8 |
| 9 const char kCpuKey[] = "cpu"; |
| 9 const char kIdKey[] = "id"; | 10 const char kIdKey[] = "id"; |
| 11 const char kNetworkKey[] = "network"; |
| 12 const char kPrivateMemoryKey[] = "privateMemory"; |
| 13 const char kProcessesKey[] = "processes"; |
| 14 const char kSharedMemoryKey[] = "sharedMemory"; |
| 15 const char kTypeKey[] = "type"; |
| 16 |
| 17 const char kProcessTypeBrowser[] = "browser"; |
| 18 const char kProcessTypeExtension[] = "extension"; |
| 19 const char kProcessTypePlugin[] = "plugin"; |
| 20 const char kProcessTypeRenderer[] = "renderer"; |
| 21 |
| 22 const char kOnUpdated[] = "experimental.processes.onUpdated"; |
| 10 | 23 |
| 11 } // namespace extension_processes_api_constants | 24 } // namespace extension_processes_api_constants |
| OLD | NEW |