Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1077)

Unified Diff: content/browser/renderer_host/sandbox_ipc_linux.cc

Issue 1787643003: Remove initializeWithoutV8 and shutdownWithoutV8 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/test_runner/test_common.cc ('k') | content/ppapi_plugin/ppapi_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « components/test_runner/test_common.cc ('k') | content/ppapi_plugin/ppapi_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698