| Index: content/browser/renderer_host/sandbox_ipc_linux.cc
|
| diff --git a/content/browser/renderer_host/sandbox_ipc_linux.cc b/content/browser/renderer_host/sandbox_ipc_linux.cc
|
| index 186c4f4c0d43b98ef417357b687084b2d02035a7..bbea7e96c44ed244ac005721d28be761860c9f3b 100644
|
| --- a/content/browser/renderer_host/sandbox_ipc_linux.cc
|
| +++ b/content/browser/renderer_host/sandbox_ipc_linux.cc
|
| @@ -121,7 +121,7 @@ void SandboxIPCHandler::Run() {
|
| }
|
|
|
| if (blink_platform_impl_)
|
| - blink::shutdownWithoutV8();
|
| + blink::Platform::shutdown();
|
|
|
| VLOG(1) << "SandboxIPCHandler stopping.";
|
| }
|
| @@ -447,7 +447,7 @@ void SandboxIPCHandler::EnsureWebKitInitialized() {
|
| if (blink_platform_impl_)
|
| return;
|
| blink_platform_impl_.reset(new BlinkPlatformImpl);
|
| - blink::initializeWithoutV8(blink_platform_impl_.get());
|
| + blink::Platform::initialize(blink_platform_impl_.get());
|
| }
|
|
|
| } // namespace content
|
|
|