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

Unified Diff: ppapi/native_client/src/trusted/plugin/pnacl_translate_thread.h

Issue 12623004: Allow PNaCl NMF to set translator optimization options for experimentation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Default to -O0 instead of the default for now Created 7 years, 9 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
Index: ppapi/native_client/src/trusted/plugin/pnacl_translate_thread.h
diff --git a/ppapi/native_client/src/trusted/plugin/pnacl_translate_thread.h b/ppapi/native_client/src/trusted/plugin/pnacl_translate_thread.h
index bb3ea8c8b32cbc4f1eb8e3a36a6259476033d1d6..39e7ba4f06a2fe71051e224c2470991111630208 100644
--- a/ppapi/native_client/src/trusted/plugin/pnacl_translate_thread.h
+++ b/ppapi/native_client/src/trusted/plugin/pnacl_translate_thread.h
@@ -29,6 +29,7 @@ class Manifest;
class NaClSubprocess;
class Plugin;
class PnaclCoordinator;
+class PnaclOptions;
class PnaclResources;
class TempFile;
@@ -53,6 +54,7 @@ class PnaclTranslateThread {
TempFile* nexe_file,
ErrorInfo* error_info,
PnaclResources* resources,
+ PnaclOptions* pnacl_options,
PnaclCoordinator* coordinator,
Plugin* plugin);
@@ -124,6 +126,7 @@ class PnaclTranslateThread {
TempFile* nexe_file_;
ErrorInfo* coordinator_error_info_;
PnaclResources* resources_;
+ PnaclOptions* pnacl_options_;
PnaclCoordinator* coordinator_;
Plugin* plugin_;
private:

Powered by Google App Engine
This is Rietveld 408576698