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

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

Issue 2896773002: [DONT COMMIT] PaintWorklet: Move paintWorklet from 'window' to 'CSS' (Closed)
Patch Set: WIP Created 3 years, 6 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/LocalDOMWindow.h"
9 #include "core/frame/LocalFrame.h" 10 #include "core/frame/LocalFrame.h"
10 #include "modules/csspaint/PaintWorkletGlobalScope.h" 11 #include "modules/csspaint/PaintWorkletGlobalScope.h"
11 12
12 namespace blink { 13 namespace blink {
13 14
14 // static 15 // static
16 PaintWorklet* PaintWorklet::From(LocalDOMWindow& window) {
17 PaintWorklet* supplement = static_cast<PaintWorklet*>(
18 Supplement<LocalDOMWindow>::From(window, SupplementName()));
19 if (!supplement && window.GetFrame()) {
20 supplement = Create(window.GetFrame());
21 ProvideTo(window, SupplementName(), supplement);
22 }
23 return supplement;
24 }
25
26 // static
15 PaintWorklet* PaintWorklet::Create(LocalFrame* frame) { 27 PaintWorklet* PaintWorklet::Create(LocalFrame* frame) {
16 return new PaintWorklet(frame); 28 return new PaintWorklet(frame);
17 } 29 }
18 30
19 PaintWorklet::PaintWorklet(LocalFrame* frame) 31 PaintWorklet::PaintWorklet(LocalFrame* frame)
20 : Worklet(frame), 32 : Worklet(frame),
33 Supplement<LocalDOMWindow>(*frame->DomWindow()),
21 pending_generator_registry_(new PaintWorkletPendingGeneratorRegistry) {} 34 pending_generator_registry_(new PaintWorkletPendingGeneratorRegistry) {}
22 35
23 PaintWorklet::~PaintWorklet() = default; 36 PaintWorklet::~PaintWorklet() = default;
24 37
25 CSSPaintDefinition* PaintWorklet::FindDefinition(const String& name) { 38 CSSPaintDefinition* PaintWorklet::FindDefinition(const String& name) {
26 if (GetNumberOfGlobalScopes() == 0) 39 if (GetNumberOfGlobalScopes() == 0)
27 return nullptr; 40 return nullptr;
28 41
29 PaintWorkletGlobalScopeProxy* proxy = 42 PaintWorkletGlobalScopeProxy* proxy =
30 PaintWorkletGlobalScopeProxy::From(FindAvailableGlobalScope()); 43 PaintWorkletGlobalScopeProxy::From(FindAvailableGlobalScope());
31 return proxy->FindDefinition(name); 44 return proxy->FindDefinition(name);
32 } 45 }
33 46
34 void PaintWorklet::AddPendingGenerator(const String& name, 47 void PaintWorklet::AddPendingGenerator(const String& name,
35 CSSPaintImageGeneratorImpl* generator) { 48 CSSPaintImageGeneratorImpl* generator) {
36 pending_generator_registry_->AddPendingGenerator(name, generator); 49 pending_generator_registry_->AddPendingGenerator(name, generator);
37 } 50 }
38 51
52 const char* PaintWorklet::SupplementName() {
53 return "PaintWorklet";
54 }
55
39 DEFINE_TRACE(PaintWorklet) { 56 DEFINE_TRACE(PaintWorklet) {
40 visitor->Trace(pending_generator_registry_); 57 visitor->Trace(pending_generator_registry_);
41 Worklet::Trace(visitor); 58 Worklet::Trace(visitor);
59 Supplement<LocalDOMWindow>::Trace(visitor);
42 } 60 }
43 61
44 bool PaintWorklet::NeedsToCreateGlobalScope() { 62 bool PaintWorklet::NeedsToCreateGlobalScope() {
45 // "The user agent must have, and select from at least two 63 // "The user agent must have, and select from at least two
46 // PaintWorkletGlobalScopes in the worklet's WorkletGlobalScopes list, unless 64 // PaintWorkletGlobalScopes in the worklet's WorkletGlobalScopes list, unless
47 // the user agent is under memory constraints." 65 // the user agent is under memory constraints."
48 // https://drafts.css-houdini.org/css-paint-api-1/#drawing-an-image 66 // https://drafts.css-houdini.org/css-paint-api-1/#drawing-an-image
49 // TODO(nhiroki): In the current impl, we create only one global scope. We 67 // TODO(nhiroki): In the current impl, we create only one global scope. We
50 // should create at least two global scopes as the spec. 68 // should create at least two global scopes as the spec.
51 return !GetNumberOfGlobalScopes(); 69 return !GetNumberOfGlobalScopes();
52 } 70 }
53 71
54 std::unique_ptr<WorkletGlobalScopeProxy> PaintWorklet::CreateGlobalScope() { 72 std::unique_ptr<WorkletGlobalScopeProxy> PaintWorklet::CreateGlobalScope() {
55 return WTF::MakeUnique<PaintWorkletGlobalScopeProxy>( 73 return WTF::MakeUnique<PaintWorkletGlobalScopeProxy>(
56 ToDocument(GetExecutionContext())->GetFrame(), 74 ToDocument(GetExecutionContext())->GetFrame(),
57 pending_generator_registry_); 75 pending_generator_registry_);
58 } 76 }
59 77
60 } // namespace blink 78 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698