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

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: 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" 36 #include "web/IndexedDBClientImpl.h"
sof 2016/04/08 19:51:58 nit: can be removed.
jsbell 2016/04/08 20:04:51 Done.
37 #include "wtf/PassOwnPtr.h" 37 #include "wtf/PassOwnPtr.h"
38 38
39 namespace blink { 39 namespace blink {
40 40
41 WorkerContentSettingsClient* WorkerContentSettingsClient::create(PassOwnPtr<WebW orkerContentSettingsClientProxy> proxy) 41 WorkerContentSettingsClient* WorkerContentSettingsClient::create(PassOwnPtr<WebW orkerContentSettingsClientProxy> proxy)
42 { 42 {
43 return new WorkerContentSettingsClient(proxy); 43 return new WorkerContentSettingsClient(proxy);
44 } 44 }
45 45
46 WorkerContentSettingsClient::~WorkerContentSettingsClient() 46 WorkerContentSettingsClient::~WorkerContentSettingsClient()
(...skipping 22 matching lines...) Expand all
69 WorkerContentSettingsClient* WorkerContentSettingsClient::from(ExecutionContext& context) 69 WorkerContentSettingsClient* WorkerContentSettingsClient::from(ExecutionContext& context)
70 { 70 {
71 WorkerClients* clients = toWorkerGlobalScope(context).clients(); 71 WorkerClients* clients = toWorkerGlobalScope(context).clients();
72 DCHECK(clients); 72 DCHECK(clients);
73 return static_cast<WorkerContentSettingsClient*>(Supplement<WorkerClients>:: from(*clients, supplementName())); 73 return static_cast<WorkerContentSettingsClient*>(Supplement<WorkerClients>:: from(*clients, supplementName()));
74 } 74 }
75 75
76 WorkerContentSettingsClient::WorkerContentSettingsClient(PassOwnPtr<WebWorkerCon tentSettingsClientProxy> proxy) 76 WorkerContentSettingsClient::WorkerContentSettingsClient(PassOwnPtr<WebWorkerCon tentSettingsClientProxy> proxy)
77 : m_proxy(proxy) 77 : m_proxy(proxy)
78 { 78 {
79 setIndexedDBClientCreateFunction(IndexedDBClientImpl::create);
80 } 79 }
81 80
82 void provideContentSettingsClientToWorker(WorkerClients* clients, PassOwnPtr<Web WorkerContentSettingsClientProxy> proxy) 81 void provideContentSettingsClientToWorker(WorkerClients* clients, PassOwnPtr<Web WorkerContentSettingsClientProxy> proxy)
83 { 82 {
84 DCHECK(clients); 83 DCHECK(clients);
85 WorkerContentSettingsClient::provideTo(*clients, WorkerContentSettingsClient ::supplementName(), WorkerContentSettingsClient::create(proxy)); 84 WorkerContentSettingsClient::provideTo(*clients, WorkerContentSettingsClient ::supplementName(), WorkerContentSettingsClient::create(proxy));
86 } 85 }
87 86
88 } // namespace blink 87 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698