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

Unified Diff: chrome/common/nacl_types.h

Issue 11761025: When launching PNaCl helper nexes, explicitly disable IRT loading. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: don't forget to serialize Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/nacl_messages.h ('k') | chrome/common/nacl_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/nacl_types.h
diff --git a/chrome/common/nacl_types.h b/chrome/common/nacl_types.h
index 49ff63cfceb6668cce8d20f74800a9e92f17e669..ecb173858e0098050e285f492e7a3cfb4f11bfcd 100644
--- a/chrome/common/nacl_types.h
+++ b/chrome/common/nacl_types.h
@@ -57,6 +57,7 @@ struct NaClStartParams {
bool enable_exception_handling;
bool enable_debug_stub;
bool enable_ipc_proxy;
+ bool uses_irt;
};
// Parameters sent to the browser process to have it launch a NaCl process.
@@ -65,13 +66,14 @@ struct NaClStartParams {
// renderer_messages.h.
struct NaClLaunchParams {
NaClLaunchParams();
- NaClLaunchParams(const std::string& u, int r, uint32 p);
+ NaClLaunchParams(const std::string& u, int r, uint32 p, bool uses_irt);
NaClLaunchParams(const NaClLaunchParams& l);
~NaClLaunchParams();
std::string manifest_url;
int render_view_id;
uint32 permission_bits;
+ bool uses_irt;
};
} // namespace nacl
« no previous file with comments | « chrome/common/nacl_messages.h ('k') | chrome/common/nacl_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698