| Index: content/ppapi_plugin/ppapi_thread.cc
|
| diff --git a/content/ppapi_plugin/ppapi_thread.cc b/content/ppapi_plugin/ppapi_thread.cc
|
| index f2358c160790d1f4506a0536a877ce12d0c08972..39af7ffc58328c0bab75602cc8fe889994fd7123 100644
|
| --- a/content/ppapi_plugin/ppapi_thread.cc
|
| +++ b/content/ppapi_plugin/ppapi_thread.cc
|
| @@ -107,7 +107,7 @@
|
| base::RandInt(0, std::numeric_limits<PP_Module>::max())),
|
| next_plugin_dispatcher_id_(1) {
|
| ppapi::proxy::PluginGlobals* globals = ppapi::proxy::PluginGlobals::Get();
|
| - globals->SetPluginProxyDelegate(this);
|
| + globals->set_plugin_proxy_delegate(this);
|
| globals->set_command_line(
|
| command_line.GetSwitchValueASCII(switches::kPpapiFlashArgs));
|
|
|
| @@ -127,7 +127,7 @@
|
| void PpapiThread::Shutdown() {
|
| ChildThread::Shutdown();
|
|
|
| - ppapi::proxy::PluginGlobals::Get()->SetPluginProxyDelegate(NULL);
|
| + ppapi::proxy::PluginGlobals::Get()->set_plugin_proxy_delegate(NULL);
|
| if (plugin_entry_points_.shutdown_module)
|
| plugin_entry_points_.shutdown_module();
|
| webkit_platform_support_->Shutdown();
|
|
|