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

Side by Side Diff: third_party/WebKit/Source/web/WorkerContentSettingsClient.cpp

Issue 1865213006: Replace setIndexedDBClientCreateFunction madness with Supplements (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove obsolete #include Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 15 matching lines...) Expand all
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "web/WorkerContentSettingsClient.h" 31 #include "web/WorkerContentSettingsClient.h"
32 32
33 #include "core/workers/WorkerGlobalScope.h" 33 #include "core/workers/WorkerGlobalScope.h"
34 #include "public/platform/WebString.h" 34 #include "public/platform/WebString.h"
35 #include "public/web/WebWorkerContentSettingsClientProxy.h" 35 #include "public/web/WebWorkerContentSettingsClientProxy.h"
36 #include "web/IndexedDBClientImpl.h"
37 #include "wtf/PassOwnPtr.h" 36 #include "wtf/PassOwnPtr.h"
38 37
39 namespace blink { 38 namespace blink {
40 39
41 WorkerContentSettingsClient* WorkerContentSettingsClient::create(PassOwnPtr<WebW orkerContentSettingsClientProxy> proxy) 40 WorkerContentSettingsClient* WorkerContentSettingsClient::create(PassOwnPtr<WebW orkerContentSettingsClientProxy> proxy)
42 { 41 {
43 return new WorkerContentSettingsClient(proxy); 42 return new WorkerContentSettingsClient(proxy);
44 } 43 }
45 44
46 WorkerContentSettingsClient::~WorkerContentSettingsClient() 45 WorkerContentSettingsClient::~WorkerContentSettingsClient()
(...skipping 22 matching lines...) Expand all
69 WorkerContentSettingsClient* WorkerContentSettingsClient::from(ExecutionContext& context) 68 WorkerContentSettingsClient* WorkerContentSettingsClient::from(ExecutionContext& context)
70 { 69 {
71 WorkerClients* clients = toWorkerGlobalScope(context).clients(); 70 WorkerClients* clients = toWorkerGlobalScope(context).clients();
72 DCHECK(clients); 71 DCHECK(clients);
73 return static_cast<WorkerContentSettingsClient*>(Supplement<WorkerClients>:: from(*clients, supplementName())); 72 return static_cast<WorkerContentSettingsClient*>(Supplement<WorkerClients>:: from(*clients, supplementName()));
74 } 73 }
75 74
76 WorkerContentSettingsClient::WorkerContentSettingsClient(PassOwnPtr<WebWorkerCon tentSettingsClientProxy> proxy) 75 WorkerContentSettingsClient::WorkerContentSettingsClient(PassOwnPtr<WebWorkerCon tentSettingsClientProxy> proxy)
77 : m_proxy(proxy) 76 : m_proxy(proxy)
78 { 77 {
79 setIndexedDBClientCreateFunction(IndexedDBClientImpl::create);
80 } 78 }
81 79
82 void provideContentSettingsClientToWorker(WorkerClients* clients, PassOwnPtr<Web WorkerContentSettingsClientProxy> proxy) 80 void provideContentSettingsClientToWorker(WorkerClients* clients, PassOwnPtr<Web WorkerContentSettingsClientProxy> proxy)
83 { 81 {
84 DCHECK(clients); 82 DCHECK(clients);
85 WorkerContentSettingsClient::provideTo(*clients, WorkerContentSettingsClient ::supplementName(), WorkerContentSettingsClient::create(proxy)); 83 WorkerContentSettingsClient::provideTo(*clients, WorkerContentSettingsClient ::supplementName(), WorkerContentSettingsClient::create(proxy));
86 } 84 }
87 85
88 } // namespace blink 86 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698