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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/browser_ppp.h

Issue 9015040: NaCl: Remove getpid() calls from the PPAPI proxy (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright Created 8 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 | « no previous file | ppapi/native_client/src/shared/ppapi_proxy/browser_ppp.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/native_client/src/shared/ppapi_proxy/browser_ppp.h
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp.h b/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp.h
index 37ee753aac7dd4d00a2193fc3e190ac9fa6cf8e6..f5212cb656aecccb124cd5ae4b50fe1b9b3765dc 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp.h
+++ b/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp.h
@@ -30,7 +30,6 @@ class BrowserPpp {
BrowserPpp(NaClSrpcChannel* main_channel, plugin::Plugin* plugin)
: main_channel_(main_channel),
is_nexe_alive_(true),
- plugin_pid_(0),
plugin_(plugin),
ppp_instance_interface_(NULL),
ppp_messaging_interface_(NULL),
@@ -72,7 +71,6 @@ class BrowserPpp {
}
NaClSrpcChannel* main_channel() const { return main_channel_; }
- int plugin_pid() const { return plugin_pid_; }
plugin::Plugin* plugin() { return plugin_; }
void ReportDeadNexe() { is_nexe_alive_ = false; }
@@ -82,8 +80,6 @@ class BrowserPpp {
// NULL if proxy has been shut down.
NaClSrpcChannel* main_channel_;
bool is_nexe_alive_;
- // The PID of the plugin.
- int plugin_pid_;
// Plugin that owns this proxy.
plugin::Plugin* plugin_;
« no previous file with comments | « no previous file | ppapi/native_client/src/shared/ppapi_proxy/browser_ppp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698