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