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

Unified Diff: trunk/src/components/nacl/common/nacl_types.h

Issue 413063003: Revert 285028 "Pepper: Remove LOAD_MODULE SRPC call in SFI mode." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « trunk/src/components/nacl/common/nacl_messages.h ('k') | trunk/src/components/nacl/common/nacl_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/components/nacl/common/nacl_types.h
===================================================================
--- trunk/src/components/nacl/common/nacl_types.h (revision 285116)
+++ trunk/src/components/nacl/common/nacl_types.h (working copy)
@@ -44,8 +44,6 @@
~NaClStartParams();
IPC::PlatformFileForTransit nexe_file;
- uint64_t nexe_token_lo;
- uint64_t nexe_token_hi;
std::vector<FileDescriptor> handles;
FileDescriptor debug_stub_server_bound_socket;
@@ -62,7 +60,6 @@
bool enable_ipc_proxy;
bool uses_irt;
bool enable_dyncode_syscalls;
-
// NOTE: Any new fields added here must also be added to the IPC
// serialization in nacl_messages.h and (for POD fields) the constructor
// in nacl_types.cc.
@@ -76,8 +73,6 @@
NaClLaunchParams();
NaClLaunchParams(const std::string& manifest_url,
const IPC::PlatformFileForTransit& nexe_file,
- uint64_t nexe_token_lo,
- uint64_t nexe_token_hi,
int render_view_id,
uint32 permission_bits,
bool uses_irt,
@@ -85,16 +80,11 @@
bool enable_dyncode_syscalls,
bool enable_exception_handling,
bool enable_crash_throttling);
+ NaClLaunchParams(const NaClLaunchParams& l);
~NaClLaunchParams();
std::string manifest_url;
- // On Windows, the HANDLE passed here is valid in the renderer's context.
- // It's the responsibility of the browser to duplicate this handle properly
- // for passing it to the plugin.
IPC::PlatformFileForTransit nexe_file;
- uint64_t nexe_token_lo;
- uint64_t nexe_token_hi;
-
int render_view_id;
uint32 permission_bits;
bool uses_irt;
« no previous file with comments | « trunk/src/components/nacl/common/nacl_messages.h ('k') | trunk/src/components/nacl/common/nacl_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698