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

Side by Side Diff: third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.h

Issue 1818223002: Introduce PaintWorkletGlobalScope, rename renderWorklet attribute to paintWorklet. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix interface listing order. Created 4 years, 9 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef PaintWorkletGlobalScope_h
6 #define PaintWorkletGlobalScope_h
7
8 #include "bindings/core/v8/ScriptValue.h"
9 #include "core/dom/ExecutionContext.h"
10 #include "modules/worklet/WorkletGlobalScope.h"
11
12 namespace blink {
13
14 class PaintWorkletGlobalScope : public WorkletGlobalScope {
15 DEFINE_WRAPPERTYPEINFO();
16 public:
17 static PassRefPtrWillBeRawPtr<PaintWorkletGlobalScope> create(LocalFrame*, c onst KURL&, const String& userAgent, PassRefPtr<SecurityOrigin>, v8::Isolate*);
18 ~PaintWorkletGlobalScope() override;
19
20 bool isPaintWorkletGlobalScope() const final { return true; }
21 void registerPaint(const String&, ScriptValue) { }
22
23 private:
24 PaintWorkletGlobalScope(LocalFrame*, const KURL&, const String& userAgent, P assRefPtr<SecurityOrigin>, v8::Isolate*);
25 };
26
27 DEFINE_TYPE_CASTS(PaintWorkletGlobalScope, ExecutionContext, context, context->i sPaintWorkletGlobalScope(), context.isPaintWorkletGlobalScope());
28
29 } // namespace blink
30
31 #endif // PaintWorkletGlobalScope_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698