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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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: Settings information should be passed to the Worker process from B
rowser process when the worker | 194 // FIXME: Settings information should be passed to the Worker process from B
rowser process when the worker |
195 // is created (similar to RenderThread::OnCreateNewView). | 195 // is created (similar to RenderThread::OnCreateNewView). |
196 m_mainFrame = WebFrame::create(this); | 196 m_mainFrame = WebLocalFrame::create(this); |
197 m_webView->setMainFrame(m_mainFrame); | 197 m_webView->setMainFrame(m_mainFrame); |
198 | 198 |
199 WebFrameImpl* webFrame = toWebFrameImpl(m_webView->mainFrame()); | 199 WebFrameImpl* webFrame = toWebFrameImpl(m_webView->mainFrame()); |
200 | 200 |
201 // Construct substitute data source for the 'shadow page'. We only need it | 201 // 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. | 202 // to have same origin as the worker so the loading checks work correctly. |
203 CString content(""); | 203 CString content(""); |
204 int length = static_cast<int>(content.length()); | 204 int length = static_cast<int>(content.length()); |
205 RefPtr<SharedBuffer> buffer(SharedBuffer::create(content.data(), length)); | 205 RefPtr<SharedBuffer> buffer(SharedBuffer::create(content.data(), length)); |
206 webFrame->frame()->loader().load(FrameLoadRequest(0, ResourceRequest(url), S
ubstituteData(buffer, "text/html", "UTF-8", KURL()))); | 206 webFrame->frame()->loader().load(FrameLoadRequest(0, ResourceRequest(url), S
ubstituteData(buffer, "text/html", "UTF-8", KURL()))); |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 workerThread()->runLoop().postDebuggerTask(createCallbackTask(dispatchOnInsp
ectorBackendTask, String(message))); | 433 workerThread()->runLoop().postDebuggerTask(createCallbackTask(dispatchOnInsp
ectorBackendTask, String(message))); |
434 WorkerDebuggerAgent::interruptAndDispatchInspectorCommands(workerThread()); | 434 WorkerDebuggerAgent::interruptAndDispatchInspectorCommands(workerThread()); |
435 } | 435 } |
436 | 436 |
437 WebSharedWorker* WebSharedWorker::create(WebSharedWorkerClient* client) | 437 WebSharedWorker* WebSharedWorker::create(WebSharedWorkerClient* client) |
438 { | 438 { |
439 return new WebSharedWorkerImpl(client); | 439 return new WebSharedWorkerImpl(client); |
440 } | 440 } |
441 | 441 |
442 } // namespace blink | 442 } // namespace blink |
OLD | NEW |