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

Unified Diff: content/utility/utility_thread_impl.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
Index: content/utility/utility_thread_impl.cc
diff --git a/content/utility/utility_thread_impl.cc b/content/utility/utility_thread_impl.cc
index b6587f58aa6cf9f5e22fe9c4d1bcccef15b8b612..fc779a0200ad6f7c2849f941cb71f51fdfd2c4fd 100644
--- a/content/utility/utility_thread_impl.cc
+++ b/content/utility/utility_thread_impl.cc
@@ -57,7 +57,7 @@ void UtilityThreadImpl::Shutdown() {
ChildThreadImpl::Shutdown();
if (blink_platform_impl_)
- blink::shutdownWithoutV8();
+ blink::Platform::shutdown();
}
void UtilityThreadImpl::ReleaseProcessIfNeeded() {
@@ -85,7 +85,7 @@ void UtilityThreadImpl::EnsureBlinkInitialized() {
}
blink_platform_impl_.reset(new UtilityBlinkPlatformImpl);
- blink::initializeWithoutV8(blink_platform_impl_.get());
+ blink::Platform::initialize(blink_platform_impl_.get());
}
void UtilityThreadImpl::Init() {
« no previous file with comments | « content/ppapi_plugin/ppapi_thread.cc ('k') | third_party/WebKit/Source/bindings/core/v8/SerializedScriptValueFactory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698