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

Unified Diff: third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp

Issue 2614143002: Use a new Supplement constructor for LocalFrame's supplements (Closed)
Patch Set: Created 3 years, 11 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: third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp b/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
index 73006f85eeeac4f8fae4e8d91ddee6d1891ca6c7..fedea814c8b2eae06a68c0437434f3588cc3a91b 100644
--- a/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
+++ b/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
@@ -386,7 +386,8 @@ void WebSharedWorkerImpl::onScriptLoaderFinished() {
workerClients,
WTF::wrapUnique(
m_client->createWorkerContentSettingsClientProxy(webSecurityOrigin)));
- provideIndexedDBClientToWorker(workerClients, IndexedDBClientImpl::create());
+ provideIndexedDBClientToWorker(workerClients,
+ IndexedDBClientImpl::create(*workerClients));
ContentSecurityPolicy* contentSecurityPolicy =
m_mainScriptLoader->releaseContentSecurityPolicy();
WorkerThreadStartMode startMode =

Powered by Google App Engine
This is Rietveld 408576698