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

Side by Side Diff: chrome/common/child_process_info.h

Issue 3915002: Out of process Pepper (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/child_process_info.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef CHROME_COMMON_CHILD_PROCESS_INFO_H_ 5 #ifndef CHROME_COMMON_CHILD_PROCESS_INFO_H_
6 #define CHROME_COMMON_CHILD_PROCESS_INFO_H_ 6 #define CHROME_COMMON_CHILD_PROCESS_INFO_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 10 matching lines...) Expand all
21 BROWSER_PROCESS, 21 BROWSER_PROCESS,
22 RENDER_PROCESS, 22 RENDER_PROCESS,
23 PLUGIN_PROCESS, 23 PLUGIN_PROCESS,
24 WORKER_PROCESS, 24 WORKER_PROCESS,
25 NACL_LOADER_PROCESS, 25 NACL_LOADER_PROCESS,
26 UTILITY_PROCESS, 26 UTILITY_PROCESS,
27 PROFILE_IMPORT_PROCESS, 27 PROFILE_IMPORT_PROCESS,
28 ZYGOTE_PROCESS, 28 ZYGOTE_PROCESS,
29 SANDBOX_HELPER_PROCESS, 29 SANDBOX_HELPER_PROCESS,
30 NACL_BROKER_PROCESS, 30 NACL_BROKER_PROCESS,
31 GPU_PROCESS 31 GPU_PROCESS,
32 PPAPI_PLUGIN_PROCESS
32 }; 33 };
33 34
34 ChildProcessInfo(const ChildProcessInfo& original); 35 ChildProcessInfo(const ChildProcessInfo& original);
35 virtual ~ChildProcessInfo(); 36 virtual ~ChildProcessInfo();
36 37
37 ChildProcessInfo& operator=(const ChildProcessInfo& original); 38 ChildProcessInfo& operator=(const ChildProcessInfo& original);
38 39
39 // Returns the type of the process. 40 // Returns the type of the process.
40 ProcessType type() const { return type_; } 41 ProcessType type() const { return type_; }
41 42
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 ProcessType type_; 107 ProcessType type_;
107 std::wstring name_; 108 std::wstring name_;
108 std::wstring version_; 109 std::wstring version_;
109 int id_; 110 int id_;
110 111
111 // The handle to the process. 112 // The handle to the process.
112 mutable base::Process process_; 113 mutable base::Process process_;
113 }; 114 };
114 115
115 #endif // CHROME_COMMON_CHILD_PROCESS_INFO_H_ 116 #endif // CHROME_COMMON_CHILD_PROCESS_INFO_H_
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/child_process_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698