| 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/V8Binding.h" | 7 #include "bindings/core/v8/V8Binding.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 paint_worklet_global_scope_(PaintWorkletGlobalScope::Create( | 21 paint_worklet_global_scope_(PaintWorkletGlobalScope::Create( |
| 22 frame, | 22 frame, |
| 23 frame->GetDocument()->Url(), | 23 frame->GetDocument()->Url(), |
| 24 frame->GetDocument()->UserAgent(), | 24 frame->GetDocument()->UserAgent(), |
| 25 frame->GetDocument()->GetSecurityOrigin(), | 25 frame->GetDocument()->GetSecurityOrigin(), |
| 26 ToIsolate(frame->GetDocument()))) {} | 26 ToIsolate(frame->GetDocument()), |
| 27 this)) {} |
| 27 | 28 |
| 28 PaintWorklet::~PaintWorklet() {} | 29 PaintWorklet::~PaintWorklet() {} |
| 29 | 30 |
| 30 PaintWorkletGlobalScope* PaintWorklet::GetWorkletGlobalScopeProxy() const { | 31 PaintWorkletGlobalScope* PaintWorklet::GetWorkletGlobalScopeProxy() const { |
| 31 return paint_worklet_global_scope_.Get(); | 32 return paint_worklet_global_scope_.Get(); |
| 32 } | 33 } |
| 33 | 34 |
| 34 CSSPaintDefinition* PaintWorklet::FindDefinition(const String& name) { | 35 CSSPaintDefinition* PaintWorklet::FindDefinition(const String& name) { |
| 35 return paint_worklet_global_scope_->FindDefinition(name); | 36 return paint_worklet_global_scope_->FindDefinition(name); |
| 36 } | 37 } |
| 37 | 38 |
| 38 void PaintWorklet::AddPendingGenerator(const String& name, | 39 void PaintWorklet::AddPendingGenerator(const String& name, |
| 39 CSSPaintImageGeneratorImpl* generator) { | 40 CSSPaintImageGeneratorImpl* generator) { |
| 40 return paint_worklet_global_scope_->AddPendingGenerator(name, generator); | 41 return paint_worklet_global_scope_->AddPendingGenerator(name, generator); |
| 41 } | 42 } |
| 42 | 43 |
| 43 DEFINE_TRACE(PaintWorklet) { | 44 DEFINE_TRACE(PaintWorklet) { |
| 44 visitor->Trace(paint_worklet_global_scope_); | 45 visitor->Trace(paint_worklet_global_scope_); |
| 45 MainThreadWorklet::Trace(visitor); | 46 MainThreadWorklet::Trace(visitor); |
| 46 } | 47 } |
| 47 | 48 |
| 48 } // namespace blink | 49 } // namespace blink |
| OLD | NEW |