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

Side by Side Diff: components/nacl/common/nacl_types.cc

Issue 100373005: Initial implementation of Bare Metal Mode for NaCl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 11 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
« no previous file with comments | « components/nacl/common/nacl_types.h ('k') | components/nacl/loader/nacl_listener.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "components/nacl/common/nacl_types.h" 5 #include "components/nacl/common/nacl_types.h"
6 #include "ipc/ipc_platform_file.h" 6 #include "ipc/ipc_platform_file.h"
7 7
8 namespace nacl { 8 namespace nacl {
9 9
10 NaClStartParams::NaClStartParams() 10 NaClStartParams::NaClStartParams()
11 : validation_cache_enabled(false), 11 : validation_cache_enabled(false),
12 enable_exception_handling(false), 12 enable_exception_handling(false),
13 enable_debug_stub(false), 13 enable_debug_stub(false),
14 enable_ipc_proxy(false), 14 enable_ipc_proxy(false),
15 uses_irt(false), 15 uses_irt(false),
16 enable_dyncode_syscalls(false) { 16 enable_dyncode_syscalls(false),
17 enable_nonsfi_mode(false) {
17 } 18 }
18 19
19 NaClStartParams::~NaClStartParams() { 20 NaClStartParams::~NaClStartParams() {
20 } 21 }
21 22
22 NaClLaunchParams::NaClLaunchParams() 23 NaClLaunchParams::NaClLaunchParams()
23 : render_view_id(0), 24 : render_view_id(0),
24 permission_bits(0), 25 permission_bits(0),
25 uses_irt(false), 26 uses_irt(false),
26 enable_dyncode_syscalls(false), 27 enable_dyncode_syscalls(false),
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 : imc_channel_handle(imc_channel_handle), 73 : imc_channel_handle(imc_channel_handle),
73 ipc_channel_handle(ipc_channel_handle), 74 ipc_channel_handle(ipc_channel_handle),
74 plugin_pid(plugin_pid), 75 plugin_pid(plugin_pid),
75 plugin_child_id(plugin_child_id) { 76 plugin_child_id(plugin_child_id) {
76 } 77 }
77 78
78 NaClLaunchResult::~NaClLaunchResult() { 79 NaClLaunchResult::~NaClLaunchResult() {
79 } 80 }
80 81
81 } // namespace nacl 82 } // namespace nacl
OLDNEW
« no previous file with comments | « components/nacl/common/nacl_types.h ('k') | components/nacl/loader/nacl_listener.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698