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

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

Issue 9390028: Remove browser support for non-PPAPI nexes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 10 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/service_runtime.h
===================================================================
--- ppapi/native_client/src/trusted/plugin/service_runtime.h (revision 121986)
+++ ppapi/native_client/src/trusted/plugin/service_runtime.h (working copy)
@@ -31,7 +31,6 @@
namespace plugin {
-class BrowserInterface;
class ErrorInfo;
class Manifest;
class Plugin;
@@ -189,9 +188,6 @@
int exit_status(); // const, but grabs mutex etc.
void set_exit_status(int exit_status);
- nacl::DescWrapper* async_receive_desc() { return async_receive_desc_.get(); }
- nacl::DescWrapper* async_send_desc() { return async_send_desc_.get(); }
-
private:
NACL_DISALLOW_COPY_AND_ASSIGN(ServiceRuntime);
bool InitCommunication(nacl::DescWrapper* shm, ErrorInfo* error_info);
@@ -199,17 +195,9 @@
NaClSrpcChannel command_channel_;
Plugin* plugin_;
bool should_report_uma_;
- BrowserInterface* browser_interface_;
nacl::ReverseService* reverse_service_;
nacl::scoped_ptr<nacl::SelLdrLauncher> subprocess_;
- // We need two IMC sockets rather than one because IMC sockets are
- // not full-duplex on Windows.
- // See http://code.google.com/p/nativeclient/issues/detail?id=690.
- // TODO(mseaborn): We should not have to work around this.
- nacl::scoped_ptr<nacl::DescWrapper> async_receive_desc_;
- nacl::scoped_ptr<nacl::DescWrapper> async_send_desc_;
-
nacl::WeakRefAnchor* anchor_;
PluginReverseInterface* rev_interface_;

Powered by Google App Engine
This is Rietveld 408576698