OLD | NEW |
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 #ifndef CHROME_BROWSER_NACL_HOST_NACL_PROCESS_HOST_H_ | 5 #ifndef CHROME_BROWSER_NACL_HOST_NACL_PROCESS_HOST_H_ |
6 #define CHROME_BROWSER_NACL_HOST_NACL_PROCESS_HOST_H_ | 6 #define CHROME_BROWSER_NACL_HOST_NACL_PROCESS_HOST_H_ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 scoped_refptr<ExtensionInfoMap> extension_info_map_; | 146 scoped_refptr<ExtensionInfoMap> extension_info_map_; |
147 | 147 |
148 // Socket pairs for the NaCl process and renderer. | 148 // Socket pairs for the NaCl process and renderer. |
149 scoped_ptr<NaClInternal> internal_; | 149 scoped_ptr<NaClInternal> internal_; |
150 | 150 |
151 base::WeakPtrFactory<NaClProcessHost> weak_factory_; | 151 base::WeakPtrFactory<NaClProcessHost> weak_factory_; |
152 | 152 |
153 scoped_ptr<content::BrowserChildProcessHost> process_; | 153 scoped_ptr<content::BrowserChildProcessHost> process_; |
154 | 154 |
155 bool enable_exception_handling_; | 155 bool enable_exception_handling_; |
| 156 bool enable_debug_stub_; |
156 | 157 |
157 bool off_the_record_; | 158 bool off_the_record_; |
158 | 159 |
159 bool enable_ipc_proxy_; | 160 bool enable_ipc_proxy_; |
160 | 161 |
161 DISALLOW_COPY_AND_ASSIGN(NaClProcessHost); | 162 DISALLOW_COPY_AND_ASSIGN(NaClProcessHost); |
162 }; | 163 }; |
163 | 164 |
164 #endif // CHROME_BROWSER_NACL_HOST_NACL_PROCESS_HOST_H_ | 165 #endif // CHROME_BROWSER_NACL_HOST_NACL_PROCESS_HOST_H_ |
OLD | NEW |