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 15 matching lines...) Expand all Loading... |
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 WorkerContentSettingsClient_h | 31 #ifndef WorkerContentSettingsClient_h |
32 #define WorkerContentSettingsClient_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 #include <memory> | |
37 | 36 |
38 namespace blink { | 37 namespace blink { |
39 | 38 |
40 class ExecutionContext; | 39 class ExecutionContext; |
41 class WebString; | 40 class WebString; |
42 class WebWorkerContentSettingsClientProxy; | 41 class WebWorkerContentSettingsClientProxy; |
43 | 42 |
44 class WorkerContentSettingsClient final : public GarbageCollectedFinalized<Worke
rContentSettingsClient>, public Supplement<WorkerClients> { | 43 class WorkerContentSettingsClient final : public GarbageCollectedFinalized<Worke
rContentSettingsClient>, public Supplement<WorkerClients> { |
45 USING_GARBAGE_COLLECTED_MIXIN(WorkerContentSettingsClient); | 44 USING_GARBAGE_COLLECTED_MIXIN(WorkerContentSettingsClient); |
46 public: | 45 public: |
47 static WorkerContentSettingsClient* create(std::unique_ptr<WebWorkerContentS
ettingsClientProxy>); | 46 static WorkerContentSettingsClient* create(PassOwnPtr<WebWorkerContentSettin
gsClientProxy>); |
48 virtual ~WorkerContentSettingsClient(); | 47 virtual ~WorkerContentSettingsClient(); |
49 | 48 |
50 bool requestFileSystemAccessSync(); | 49 bool requestFileSystemAccessSync(); |
51 bool allowIndexedDB(const WebString& name); | 50 bool allowIndexedDB(const WebString& name); |
52 | 51 |
53 static const char* supplementName(); | 52 static const char* supplementName(); |
54 static WorkerContentSettingsClient* from(ExecutionContext&); | 53 static WorkerContentSettingsClient* from(ExecutionContext&); |
55 | 54 |
56 DEFINE_INLINE_VIRTUAL_TRACE() { Supplement<WorkerClients>::trace(visitor); } | 55 DEFINE_INLINE_VIRTUAL_TRACE() { Supplement<WorkerClients>::trace(visitor); } |
57 | 56 |
58 private: | 57 private: |
59 explicit WorkerContentSettingsClient(std::unique_ptr<WebWorkerContentSetting
sClientProxy>); | 58 explicit WorkerContentSettingsClient(PassOwnPtr<WebWorkerContentSettingsClie
ntProxy>); |
60 | 59 |
61 std::unique_ptr<WebWorkerContentSettingsClientProxy> m_proxy; | 60 OwnPtr<WebWorkerContentSettingsClientProxy> m_proxy; |
62 }; | 61 }; |
63 | 62 |
64 void provideContentSettingsClientToWorker(WorkerClients*, std::unique_ptr<WebWor
kerContentSettingsClientProxy>); | 63 void provideContentSettingsClientToWorker(WorkerClients*, PassOwnPtr<WebWorkerCo
ntentSettingsClientProxy>); |
65 | 64 |
66 } // namespace blink | 65 } // namespace blink |
67 | 66 |
68 #endif // WorkerContentSettingsClient_h | 67 #endif // WorkerContentSettingsClient_h |
OLD | NEW |