OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
184 } | 184 } |
185 | 185 |
186 void WebSharedWorkerImpl::initializeLoader(const WebURL& url) | 186 void WebSharedWorkerImpl::initializeLoader(const WebURL& url) |
187 { | 187 { |
188 // Create 'shadow page'. This page is never displayed, it is used to proxy t he | 188 // Create 'shadow page'. This page is never displayed, it is used to proxy t he |
189 // loading requests from the worker context to the rest of WebKit and Chromi um | 189 // loading requests from the worker context to the rest of WebKit and Chromi um |
190 // infrastructure. | 190 // infrastructure. |
191 ASSERT(!m_webView); | 191 ASSERT(!m_webView); |
192 m_webView = WebView::create(0); | 192 m_webView = WebView::create(0); |
193 m_webView->settings()->setOfflineWebApplicationCacheEnabled(RuntimeEnabledFe atures::applicationCacheEnabled()); | 193 m_webView->settings()->setOfflineWebApplicationCacheEnabled(RuntimeEnabledFe atures::applicationCacheEnabled()); |
194 // FIXME: http://crbug.com/363843. This needs to find a better way to | |
195 // not create graphics layers. | |
196 m_webView->settings()->setAcceleratedCompositingEnabled(false); | |
esprehn
2014/05/14 20:32:02
This is so crazy, why does a SharedWorker even hav
enne (OOO)
2014/05/14 20:42:20
I was similarly confused.
| |
194 // FIXME: Settings information should be passed to the Worker process from B rowser process when the worker | 197 // FIXME: Settings information should be passed to the Worker process from B rowser process when the worker |
195 // is created (similar to RenderThread::OnCreateNewView). | 198 // is created (similar to RenderThread::OnCreateNewView). |
196 m_mainFrame = WebLocalFrame::create(this); | 199 m_mainFrame = WebLocalFrame::create(this); |
197 m_webView->setMainFrame(m_mainFrame); | 200 m_webView->setMainFrame(m_mainFrame); |
198 | 201 |
199 WebLocalFrameImpl* webFrame = toWebLocalFrameImpl(m_webView->mainFrame()); | 202 WebLocalFrameImpl* webFrame = toWebLocalFrameImpl(m_webView->mainFrame()); |
200 | 203 |
201 // Construct substitute data source for the 'shadow page'. We only need it | 204 // Construct substitute data source for the 'shadow page'. We only need it |
202 // to have same origin as the worker so the loading checks work correctly. | 205 // to have same origin as the worker so the loading checks work correctly. |
203 CString content(""); | 206 CString content(""); |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
433 workerThread()->runLoop().postDebuggerTask(createCallbackTask(dispatchOnInsp ectorBackendTask, String(message))); | 436 workerThread()->runLoop().postDebuggerTask(createCallbackTask(dispatchOnInsp ectorBackendTask, String(message))); |
434 WorkerDebuggerAgent::interruptAndDispatchInspectorCommands(workerThread()); | 437 WorkerDebuggerAgent::interruptAndDispatchInspectorCommands(workerThread()); |
435 } | 438 } |
436 | 439 |
437 WebSharedWorker* WebSharedWorker::create(WebSharedWorkerClient* client) | 440 WebSharedWorker* WebSharedWorker::create(WebSharedWorkerClient* client) |
438 { | 441 { |
439 return new WebSharedWorkerImpl(client); | 442 return new WebSharedWorkerImpl(client); |
440 } | 443 } |
441 | 444 |
442 } // namespace blink | 445 } // namespace blink |
OLD | NEW |