diff options
author | jvoung@google.com <jvoung@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-07 00:57:43 +0000 |
---|---|---|
committer | jvoung@google.com <jvoung@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-07 00:57:43 +0000 |
commit | 397b54488233b57e205f4a0da2cdbf178c2ab292 (patch) | |
tree | 08b2fe196138520799d182b71a8d1dd1b50492fe /ppapi | |
parent | ebdac97930d1022005dce370f08f1e2021231c31 (diff) | |
download | chromium_src-397b54488233b57e205f4a0da2cdbf178c2ab292.zip chromium_src-397b54488233b57e205f4a0da2cdbf178c2ab292.tar.gz chromium_src-397b54488233b57e205f4a0da2cdbf178c2ab292.tar.bz2 |
Remove some unused local variables from pnacl coordinator.
R=ncbray@google.com,sehr@google.com
BUG= none (cleanup)
TEST= none
Review URL: https://chromiumcodereview.appspot.com/9345003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@120665 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc b/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc index 807fe61..3708b99 100644 --- a/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc +++ b/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc @@ -736,8 +736,6 @@ NaClSubprocess* PnaclCoordinator::StartSubprocess( // class for interfacing with the rest of the coordinator. void WINAPI PnaclCoordinator::DoTranslateThread(void* arg) { PnaclCoordinator* coordinator = reinterpret_cast<PnaclCoordinator*>(arg); - Plugin* plugin = coordinator->plugin_; - BrowserInterface* browser_interface = plugin->browser_interface(); nacl::scoped_ptr<NaClSubprocess> llc_subprocess( coordinator->StartSubprocess(kLlcUrl, coordinator->manifest_.get())); |