Commit a4fc0395 authored by binji@chromium.org's avatar binji@chromium.org

ppapi NaCl trusted plugin: Rename interface because Win build breaks on it.

BUG=none


Review URL: https://chromiumcodereview.appspot.com/10836044

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149454 0039d316-1c4b-4281-b951-d872f2087c98
parent 5405bace
......@@ -119,9 +119,9 @@ void PnaclTranslateThread::TranslateFailed(const nacl::string& error_string) {
// called on the translation thread before any RPCs are called, and called
// again with NULL before the object is destroyed.
void PnaclTranslateThread::RegisterReverseInterface(
PluginReverseInterface *interface) {
PluginReverseInterface *iface) {
nacl::MutexLocker ml(&subprocess_mu_);
current_rev_interface_ = interface;
current_rev_interface_ = iface;
}
......
......@@ -71,7 +71,7 @@ class PnaclTranslateThread {
// service call.
// (see also the comments in Plugin::~Plugin about ShutdownSubprocesses,
// but that only handles the main nexe and not the translator nexes.)
void RegisterReverseInterface(PluginReverseInterface *interface);
void RegisterReverseInterface(PluginReverseInterface *iface);
// Callback to run when tasks are completed or an error has occurred.
pp::CompletionCallback report_translate_finished_;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment