OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "modules/csspaint/PaintWorklet.h" | 5 #include "modules/csspaint/PaintWorklet.h" |
6 | 6 |
7 #include "bindings/core/v8/V8BindingForCore.h" | 7 #include "bindings/core/v8/V8BindingForCore.h" |
8 #include "core/dom/Document.h" | 8 #include "core/dom/Document.h" |
9 #include "core/frame/LocalFrame.h" | 9 #include "core/frame/LocalFrame.h" |
10 #include "modules/csspaint/PaintWorkletGlobalScope.h" | 10 #include "modules/csspaint/PaintWorkletGlobalScope.h" |
11 | 11 |
12 namespace blink { | 12 namespace blink { |
13 | 13 |
14 // static | 14 // static |
15 PaintWorklet* PaintWorklet::Create(LocalFrame* frame) { | 15 PaintWorklet* PaintWorklet::Create(LocalFrame* frame) { |
16 return new PaintWorklet(frame); | 16 return new PaintWorklet(frame); |
17 } | 17 } |
18 | 18 |
19 PaintWorklet::PaintWorklet(LocalFrame* frame) | 19 PaintWorklet::PaintWorklet(LocalFrame* frame) : MainThreadWorklet(frame) {} |
20 : MainThreadWorklet(frame), | |
21 global_scope_proxy_( | |
22 WTF::MakeUnique<PaintWorkletGlobalScopeProxy>(frame)) {} | |
23 | 20 |
24 PaintWorklet::~PaintWorklet() = default; | 21 PaintWorklet::~PaintWorklet() = default; |
25 | 22 |
26 WorkletGlobalScopeProxy* PaintWorklet::GetWorkletGlobalScopeProxy() const { | |
27 return global_scope_proxy_.get(); | |
28 } | |
29 | |
30 CSSPaintDefinition* PaintWorklet::FindDefinition(const String& name) { | 23 CSSPaintDefinition* PaintWorklet::FindDefinition(const String& name) { |
31 return global_scope_proxy_->FindDefinition(name); | 24 // TODO(nhiroki): Support the case where there are multiple global scopes. |
| 25 DCHECK_EQ(1u, global_scope_proxies_.size()); |
| 26 PaintWorkletGlobalScopeProxy* proxy = |
| 27 PaintWorkletGlobalScopeProxy::From(global_scope_proxies_.begin()->get()); |
| 28 return proxy->FindDefinition(name); |
32 } | 29 } |
33 | 30 |
34 void PaintWorklet::AddPendingGenerator(const String& name, | 31 void PaintWorklet::AddPendingGenerator(const String& name, |
35 CSSPaintImageGeneratorImpl* generator) { | 32 CSSPaintImageGeneratorImpl* generator) { |
36 return global_scope_proxy_->AddPendingGenerator(name, generator); | 33 // TODO(nhiroki): Support the case where there are multiple global scopes. |
| 34 DCHECK_EQ(1u, global_scope_proxies_.size()); |
| 35 PaintWorkletGlobalScopeProxy* proxy = |
| 36 PaintWorkletGlobalScopeProxy::From(global_scope_proxies_.begin()->get()); |
| 37 return proxy->AddPendingGenerator(name, generator); |
37 } | 38 } |
38 | 39 |
39 DEFINE_TRACE(PaintWorklet) { | 40 DEFINE_TRACE(PaintWorklet) { |
40 MainThreadWorklet::Trace(visitor); | 41 MainThreadWorklet::Trace(visitor); |
41 } | 42 } |
42 | 43 |
| 44 void PaintWorklet::AddWorkletGlobalScopesIfNeeded() { |
| 45 // "The user agent must have, and select from at least two |
| 46 // PaintWorkletGlobalScopes in the worklet's WorkletGlobalScopes list, unless |
| 47 // the user agent is under memory constraints." |
| 48 // https://drafts.css-houdini.org/css-paint-api-1/#drawing-an-image |
| 49 // TODO(nhiroki): Create at least two global scopes. |
| 50 if (!global_scope_proxies_.IsEmpty()) |
| 51 return; |
| 52 std::unique_ptr<WorkletGlobalScopeProxy> proxy = |
| 53 WTF::MakeUnique<PaintWorkletGlobalScopeProxy>(frame_); |
| 54 global_scope_proxies_.insert(std::move(proxy)); |
| 55 } |
| 56 |
43 } // namespace blink | 57 } // namespace blink |
OLD | NEW |