From 46a8e17524845128de20bcfe4fa1853e4cdc3b37 Mon Sep 17 00:00:00 2001 From: "dslomov@chromium.org" Date: Sat, 24 Sep 2011 00:16:49 +0000 Subject: Do not intitialize V8 in browser process. Review URL: http://codereview.chromium.org/8031002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102625 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/in_process_webkit/webkit_thread.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/browser/in_process_webkit/webkit_thread.cc') diff --git a/content/browser/in_process_webkit/webkit_thread.cc b/content/browser/in_process_webkit/webkit_thread.cc index b9e1156..69ef13c 100644 --- a/content/browser/in_process_webkit/webkit_thread.cc +++ b/content/browser/in_process_webkit/webkit_thread.cc @@ -47,7 +47,7 @@ WebKitThread::InternalWebKitThread::~InternalWebKitThread() { void WebKitThread::InternalWebKitThread::Init() { DCHECK(!webkit_platform_support_.get()); webkit_platform_support_.reset(new BrowserWebKitPlatformSupportImpl); - WebKit::initialize(webkit_platform_support_.get()); + WebKit::initializeWithoutV8(webkit_platform_support_.get()); webkit_glue::EnableWebCoreLogChannels( CommandLine::ForCurrentProcess()->GetSwitchValueASCII( switches::kWebCoreLogChannels)); -- cgit v1.1