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

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

Issue 235983020: Pepper: Move PnaclOptions outside trusted plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: another build fix Created 6 years, 8 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 4de09633836102d43a1603f5ad713d1a38d63b2c..db1dbf03a9b6f79565acf0233f4fd72b0d5d12da 100644
--- a/ppapi/native_client/src/trusted/plugin/pnacl_translate_thread.h
+++ b/ppapi/native_client/src/trusted/plugin/pnacl_translate_thread.h
@@ -19,6 +19,8 @@
#include "ppapi/native_client/src/trusted/plugin/plugin_error.h"
#include "ppapi/native_client/src/trusted/plugin/service_runtime.h"
+struct PP_PNaClOptions;
+
namespace nacl {
class DescWrapper;
}
@@ -30,7 +32,6 @@ class Manifest;
class NaClSubprocess;
class Plugin;
class PnaclCoordinator;
-class PnaclOptions;
class PnaclResources;
class TempFile;
@@ -48,7 +49,7 @@ class PnaclTranslateThread {
nacl::DescWrapper* invalid_desc_wrapper,
ErrorInfo* error_info,
PnaclResources* resources,
- PnaclOptions* pnacl_options,
+ PP_PNaClOptions* pnacl_options,
PnaclCoordinator* coordinator,
Plugin* plugin);
@@ -119,7 +120,7 @@ class PnaclTranslateThread {
nacl::DescWrapper* invalid_desc_wrapper_;
ErrorInfo* coordinator_error_info_;
PnaclResources* resources_;
- PnaclOptions* pnacl_options_;
+ PP_PNaClOptions* pnacl_options_;
PnaclCoordinator* coordinator_;
Plugin* plugin_;
private:

Powered by Google App Engine
This is Rietveld 408576698