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

Unified Diff: ppapi/native_client/src/trusted/plugin/manifest.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/manifest.h
diff --git a/ppapi/native_client/src/trusted/plugin/manifest.h b/ppapi/native_client/src/trusted/plugin/manifest.h
index c430e1f3460712f6d0851a09debf846416c2cc42..aa1ad3bce6ecc6ed8dda849ca4d408336e7c273e 100644
--- a/ppapi/native_client/src/trusted/plugin/manifest.h
+++ b/ppapi/native_client/src/trusted/plugin/manifest.h
@@ -17,6 +17,8 @@
#include "native_client/src/include/nacl_string.h"
#include "third_party/jsoncpp/source/include/json/value.h"
+struct PP_PNaClOptions;
+
namespace pp {
class URLUtil_Dev;
} // namespace pp
@@ -24,7 +26,6 @@ class URLUtil_Dev;
namespace plugin {
class ErrorInfo;
-class PnaclOptions;
class Manifest {
public:
@@ -42,7 +43,7 @@ class Manifest {
// manifest file. Fills in |pnacl_options| if the program requires
// PNaCl translation.
virtual bool GetProgramURL(nacl::string* full_url,
- PnaclOptions* pnacl_options,
+ PP_PNaClOptions* pnacl_options,
bool* uses_nonsfi_mode,
ErrorInfo* error_info) const = 0;
@@ -60,7 +61,7 @@ class Manifest {
// If there was an error, details are reported via error_info.
virtual bool ResolveKey(const nacl::string& key,
nacl::string* full_url,
- PnaclOptions* pnacl_options,
+ PP_PNaClOptions* pnacl_options,
ErrorInfo* error_info) const = 0;
protected:

Powered by Google App Engine
This is Rietveld 408576698