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

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

Issue 319953002: Task Manager: Remove dead FPS code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 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_API_PROCESSES_PROCESSES_API_CONSTANTS_H_ 7 #ifndef CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_
8 #define CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_ 8 #define CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_
9 9
10 namespace extensions { 10 namespace extensions {
11 11
12 namespace processes_api_constants { 12 namespace processes_api_constants {
13 13
14 // Process object properties. 14 // Process object properties.
15 extern const char kCpuKey[]; 15 extern const char kCpuKey[];
16 extern const char kCssCacheKey[]; 16 extern const char kCssCacheKey[];
17 extern const char kFPSKey[];
18 extern const char kIdKey[]; 17 extern const char kIdKey[];
19 extern const char kImageCacheKey[]; 18 extern const char kImageCacheKey[];
20 extern const char kJsMemoryAllocatedKey[]; 19 extern const char kJsMemoryAllocatedKey[];
21 extern const char kJsMemoryUsedKey[]; 20 extern const char kJsMemoryUsedKey[];
22 extern const char kNaClDebugPortKey[]; 21 extern const char kNaClDebugPortKey[];
23 extern const char kNetworkKey[]; 22 extern const char kNetworkKey[];
24 extern const char kOsProcessIdKey[]; 23 extern const char kOsProcessIdKey[];
25 extern const char kPrivateMemoryKey[]; 24 extern const char kPrivateMemoryKey[];
26 extern const char kProfileKey[]; 25 extern const char kProfileKey[];
27 extern const char kScriptCacheKey[]; 26 extern const char kScriptCacheKey[];
(...skipping 27 matching lines...) Expand all
55 54
56 // Error strings. 55 // Error strings.
57 extern const char kExtensionNotSupported[]; 56 extern const char kExtensionNotSupported[];
58 extern const char kProcessNotFound[]; 57 extern const char kProcessNotFound[];
59 58
60 } // namespace processes_api_constants 59 } // namespace processes_api_constants
61 60
62 } // namespace extensions 61 } // namespace extensions
63 62
64 #endif // CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_ 63 #endif // CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698