diff options
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/worker/worker_thread.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/worker/worker_thread.cc b/chrome/worker/worker_thread.cc index f37904a..8ae8fab 100644 --- a/chrome/worker/worker_thread.cc +++ b/chrome/worker/worker_thread.cc @@ -21,6 +21,9 @@ void WorkerThread::Init() { ChildThread::Init(); webkit_client_.reset(new WorkerWebKitClientImpl); WebKit::initialize(webkit_client_.get()); + + // Enable the worker so that the nested worker can be created. + WebKit::enableWebWorkers(); } void WorkerThread::CleanUp() { |