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

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

Issue 2583093002: Reduce SuspendableObjects (Closed)
Patch Set: Created 4 years 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/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 PaintWorklet* worklet = new PaintWorklet(frame); 16 return new PaintWorklet(frame);
17 worklet->suspendIfNeeded();
18 return worklet;
19 } 17 }
20 18
21 PaintWorklet::PaintWorklet(LocalFrame* frame) 19 PaintWorklet::PaintWorklet(LocalFrame* frame)
22 : Worklet(frame), 20 : Worklet(frame),
23 m_paintWorkletGlobalScope(PaintWorkletGlobalScope::create( 21 m_paintWorkletGlobalScope(PaintWorkletGlobalScope::create(
24 frame, 22 frame,
25 frame->document()->url(), 23 frame->document()->url(),
26 frame->document()->userAgent(), 24 frame->document()->userAgent(),
27 frame->document()->getSecurityOrigin(), 25 frame->document()->getSecurityOrigin(),
28 toIsolate(frame->document()))) {} 26 toIsolate(frame->document()))) {}
(...skipping 12 matching lines...) Expand all
41 CSSPaintImageGeneratorImpl* generator) { 39 CSSPaintImageGeneratorImpl* generator) {
42 return m_paintWorkletGlobalScope->addPendingGenerator(name, generator); 40 return m_paintWorkletGlobalScope->addPendingGenerator(name, generator);
43 } 41 }
44 42
45 DEFINE_TRACE(PaintWorklet) { 43 DEFINE_TRACE(PaintWorklet) {
46 visitor->trace(m_paintWorkletGlobalScope); 44 visitor->trace(m_paintWorkletGlobalScope);
47 Worklet::trace(visitor); 45 Worklet::trace(visitor);
48 } 46 }
49 47
50 } // namespace blink 48 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698