| Index: content/ppapi_plugin/ppapi_thread.cc
|
| diff --git a/content/ppapi_plugin/ppapi_thread.cc b/content/ppapi_plugin/ppapi_thread.cc
|
| index 35d56e276264e9fd3f44168e6a0d16ea3fc2e3ea..96770b527d0a9ef82ab305badd465700d9034558 100644
|
| --- a/content/ppapi_plugin/ppapi_thread.cc
|
| +++ b/content/ppapi_plugin/ppapi_thread.cc
|
| @@ -118,7 +118,7 @@ PpapiThread::PpapiThread(const base::CommandLine& command_line, bool is_broker)
|
| command_line.GetSwitchValueASCII(switches::kPpapiFlashArgs));
|
|
|
| blink_platform_impl_.reset(new PpapiBlinkPlatformImpl);
|
| - blink::initializeWithoutV8(blink_platform_impl_.get());
|
| + blink::Platform::initialize(blink_platform_impl_.get());
|
|
|
| if (!is_broker_) {
|
| scoped_refptr<ppapi::proxy::PluginMessageFilter> plugin_filter(
|
| @@ -146,7 +146,7 @@ void PpapiThread::Shutdown() {
|
| if (plugin_entry_points_.shutdown_module)
|
| plugin_entry_points_.shutdown_module();
|
| blink_platform_impl_->Shutdown();
|
| - blink::shutdownWithoutV8();
|
| + blink::Platform::shutdown();
|
| }
|
|
|
| bool PpapiThread::Send(IPC::Message* msg) {
|
|
|