OLD | NEW |
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 10 matching lines...) Expand all Loading... |
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
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 #ifndef WorkerPermissionClient_h | 31 #ifndef WorkerContentSettingsClient_h |
32 #define WorkerPermissionClient_h | 32 #define WorkerContentSettingsClient_h |
33 | 33 |
34 #include "core/workers/WorkerClients.h" | 34 #include "core/workers/WorkerClients.h" |
35 #include "wtf/Forward.h" | 35 #include "wtf/Forward.h" |
36 | 36 |
37 namespace blink { | 37 namespace blink { |
38 | 38 |
39 class ExecutionContext; | 39 class ExecutionContext; |
40 class WebString; | 40 class WebString; |
41 class WebWorkerPermissionClientProxy; | 41 class WebWorkerContentSettingsClientProxy; |
42 | 42 |
43 class WorkerPermissionClient final : public NoBaseWillBeGarbageCollectedFinalize
d<WorkerPermissionClient>, public WillBeHeapSupplement<WorkerClients> { | 43 class WorkerContentSettingsClient final : public NoBaseWillBeGarbageCollectedFin
alized<WorkerContentSettingsClient>, public WillBeHeapSupplement<WorkerClients>
{ |
44 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WorkerPermissionClient); | 44 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WorkerContentSettingsClient); |
45 public: | 45 public: |
46 static PassOwnPtrWillBeRawPtr<WorkerPermissionClient> create(PassOwnPtr<WebW
orkerPermissionClientProxy>); | 46 static PassOwnPtrWillBeRawPtr<WorkerContentSettingsClient> create(PassOwnPtr
<WebWorkerContentSettingsClientProxy>); |
47 virtual ~WorkerPermissionClient(); | 47 virtual ~WorkerContentSettingsClient(); |
48 | 48 |
49 bool requestFileSystemAccessSync(); | 49 bool requestFileSystemAccessSync(); |
50 bool allowIndexedDB(const WebString& name); | 50 bool allowIndexedDB(const WebString& name); |
51 | 51 |
52 static const char* supplementName(); | 52 static const char* supplementName(); |
53 static WorkerPermissionClient* from(ExecutionContext&); | 53 static WorkerContentSettingsClient* from(ExecutionContext&); |
54 | 54 |
55 DEFINE_INLINE_VIRTUAL_TRACE() { WillBeHeapSupplement<WorkerClients>::trace(v
isitor); } | 55 DEFINE_INLINE_VIRTUAL_TRACE() { WillBeHeapSupplement<WorkerClients>::trace(v
isitor); } |
56 | 56 |
57 private: | 57 private: |
58 explicit WorkerPermissionClient(PassOwnPtr<WebWorkerPermissionClientProxy>); | 58 explicit WorkerContentSettingsClient(PassOwnPtr<WebWorkerContentSettingsClie
ntProxy>); |
59 | 59 |
60 OwnPtr<WebWorkerPermissionClientProxy> m_proxy; | 60 OwnPtr<WebWorkerContentSettingsClientProxy> m_proxy; |
61 }; | 61 }; |
62 | 62 |
63 void providePermissionClientToWorker(WorkerClients*, PassOwnPtr<WebWorkerPermiss
ionClientProxy>); | 63 void provideContentSettingsClientToWorker(WorkerClients*, PassOwnPtr<WebWorkerCo
ntentSettingsClientProxy>); |
64 | 64 |
65 } // namespace blink | 65 } // namespace blink |
66 | 66 |
67 #endif // WorkerPermissionClient_h | 67 #endif // WorkerContentSettingsClient_h |
OLD | NEW |