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

Side by Side Diff: third_party/WebKit/Source/modules/csspaint/PaintWorklet.cpp

Issue 2871513002: Worklet: Lazily create PaintWorkletGlobalScopes (Closed)
Patch Set: add class-level comments Created 3 years, 7 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 // 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)
20 : MainThreadWorklet(frame), 20 : MainThreadWorklet(frame),
21 global_scope_proxy_( 21 pending_generator_registry_(new PaintWorkletPendingGeneratorRegistry) {}
22 WTF::MakeUnique<PaintWorkletGlobalScopeProxy>(frame)) {}
23 22
24 PaintWorklet::~PaintWorklet() = default; 23 PaintWorklet::~PaintWorklet() = default;
25 24
26 WorkletGlobalScopeProxy* PaintWorklet::GetWorkletGlobalScopeProxy() const { 25 CSSPaintDefinition* PaintWorklet::FindDefinition(const String& name) {
27 return global_scope_proxy_.get(); 26 if (GetProxies().IsEmpty())
28 } 27 return nullptr;
29 28
30 CSSPaintDefinition* PaintWorklet::FindDefinition(const String& name) { 29 // TODO(nhiroki): Support the case where there are multiple global scopes.
ikilpatrick 2017/05/10 03:47:44 so what we'll want to do for paint is basically sw
nhiroki 2017/05/10 09:01:32 I'm a bit confused. Does it mean to remove PaintWo
ikilpatrick 2017/05/24 03:47:07 Ah sorry, we'll have to work on this a bit more, t
nhiroki 2017/05/24 05:12:21 Acknowledged. Thank you for the clarification.
31 return global_scope_proxy_->FindDefinition(name); 30 DCHECK_EQ(1u, GetProxies().size());
31 PaintWorkletGlobalScopeProxy* proxy =
32 PaintWorkletGlobalScopeProxy::From(GetProxies().begin()->get());
33 return proxy->FindDefinition(name);
32 } 34 }
33 35
34 void PaintWorklet::AddPendingGenerator(const String& name, 36 void PaintWorklet::AddPendingGenerator(const String& name,
35 CSSPaintImageGeneratorImpl* generator) { 37 CSSPaintImageGeneratorImpl* generator) {
36 return global_scope_proxy_->AddPendingGenerator(name, generator); 38 if (GetProxies().IsEmpty()) {
39 pending_generator_registry_->AddPendingGenerator(name, generator);
40 return;
41 }
42
43 // TODO(nhiroki): Support the case where there are multiple global scopes.
44 DCHECK_EQ(1u, GetProxies().size());
45 PaintWorkletGlobalScopeProxy* proxy =
46 PaintWorkletGlobalScopeProxy::From(GetProxies().begin()->get());
47 return proxy->AddPendingGenerator(name, generator);
37 } 48 }
38 49
39 DEFINE_TRACE(PaintWorklet) { 50 DEFINE_TRACE(PaintWorklet) {
51 visitor->Trace(pending_generator_registry_);
40 MainThreadWorklet::Trace(visitor); 52 MainThreadWorklet::Trace(visitor);
41 } 53 }
42 54
55 bool PaintWorklet::NeedsToCreateGlobalScope() {
56 // "The user agent must have, and select from at least two
57 // PaintWorkletGlobalScopes in the worklet's WorkletGlobalScopes list, unless
58 // the user agent is under memory constraints."
59 // https://drafts.css-houdini.org/css-paint-api-1/#drawing-an-image
60 // TODO(nhiroki): In the current impl, we create only one global scope. We
61 // should create at least two global scopes as the spec.
62 return GetProxies().IsEmpty();
63 }
64
65 std::unique_ptr<WorkletGlobalScopeProxy> PaintWorklet::CreateGlobalScope() {
66 auto proxy = WTF::MakeUnique<PaintWorkletGlobalScopeProxy>(frame_);
67 if (GetProxies().IsEmpty()) {
68 proxy->global_scope()->SetPendingGeneratorRegistry(
69 pending_generator_registry_);
70 pending_generator_registry_ = nullptr;
71 }
72 return proxy;
73 }
74
43 } // namespace blink 75 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698