Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(620)

Side by Side Diff: chrome/browser/extensions/api/processes/processes_api_constants.cc

Issue 10915067: Moving extension_processes_api to api/processes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698