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

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

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 // 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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698