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

Unified Diff: third_party/WebKit/Source/modules/csspaint/PaintWorklet.h

Issue 2840523002: [DONT COMMIT] Worklet: Implement "addModule()" algorithm for main thread worklets (Closed)
Patch Set: rebase Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/csspaint/PaintWorklet.h
diff --git a/third_party/WebKit/Source/modules/csspaint/PaintWorklet.h b/third_party/WebKit/Source/modules/csspaint/PaintWorklet.h
index 762df33ed9afba7e6c2dbb44f1a5c7cf9ee27a3b..9568bf18af18ac0ebae0a06aee4c5927165e73a2 100644
--- a/third_party/WebKit/Source/modules/csspaint/PaintWorklet.h
+++ b/third_party/WebKit/Source/modules/csspaint/PaintWorklet.h
@@ -7,7 +7,6 @@
#include "core/workers/MainThreadWorklet.h"
#include "modules/ModulesExport.h"
-#include "modules/csspaint/PaintWorkletGlobalScope.h"
#include "platform/heap/Handle.h"
namespace blink {
@@ -22,16 +21,17 @@ class MODULES_EXPORT PaintWorklet final : public MainThreadWorklet {
static PaintWorklet* Create(LocalFrame*);
~PaintWorklet() override;
- PaintWorkletGlobalScope* GetWorkletGlobalScopeProxy() const final;
CSSPaintDefinition* FindDefinition(const String& name);
void AddPendingGenerator(const String& name, CSSPaintImageGeneratorImpl*);
DECLARE_VIRTUAL_TRACE();
private:
+ friend class PaintWorkletTest;
+
explicit PaintWorklet(LocalFrame*);
- Member<PaintWorkletGlobalScope> paint_worklet_global_scope_;
+ void MayAddWorkletGlobalScopes() override;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/modules/csspaint/BUILD.gn ('k') | third_party/WebKit/Source/modules/csspaint/PaintWorklet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698