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

Side by Side Diff: chrome/browser/extensions/extension_processes_api_constants.h

Issue 3597016: Expands the chrome.experimental.processes extension API.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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) 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 // 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_EXTENSION_PROCESSES_API_CONSTANTS_H_
8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_ 8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_
9 #pragma once 9 #pragma once
10 10
11 namespace extension_processes_api_constants { 11 namespace extension_processes_api_constants {
12 12
13 // Keys used in serializing tab data & events. 13 // Keys used in serializing process data & events.
14 extern const char kCpuKey[];
14 extern const char kIdKey[]; 15 extern const char kIdKey[];
16 extern const char kNetworkKey[];
17 extern const char kPrivateMemoryKey[];
18 extern const char kProcessesKey[];
19 extern const char kSharedMemoryKey[];
20 extern const char kTypeKey[];
21
22 extern const char kProcessTypeBrowser[];
23 extern const char kProcessTypeExtension[];
24 extern const char kProcessTypePlugin[];
25 extern const char kProcessTypeRenderer[];
26
27 extern const char kOnUpdated[];
15 28
16 }; // namespace extension_processes_api_constants 29 }; // namespace extension_processes_api_constants
17 30
18 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_ 31 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_processes_api.cc ('k') | chrome/browser/extensions/extension_processes_api_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698