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

Unified Diff: third_party/WebKit/Source/core/css/CSSPaintImageGenerator.h

Issue 1866623002: Hook up CSSPaintValue::image to CSS Paint API callback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments + rebase. Created 4 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/core/css/CSSPaintImageGenerator.h
diff --git a/third_party/WebKit/Source/core/css/CSSPaintImageGenerator.h b/third_party/WebKit/Source/core/css/CSSPaintImageGenerator.h
new file mode 100644
index 0000000000000000000000000000000000000000..3f5b03db120f81dc2ade1de04d79c1a71d7878b9
--- /dev/null
+++ b/third_party/WebKit/Source/core/css/CSSPaintImageGenerator.h
@@ -0,0 +1,47 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CSSPaintImageGenerator_h
+#define CSSPaintImageGenerator_h
+
+#include "core/CoreExport.h"
+#include "platform/geometry/IntSize.h"
+#include "platform/heap/Handle.h"
+
+namespace blink {
+
+class Document;
+class Image;
+
+// Produces a PaintGeneratedImage from a CSS Paint API callback.
+// https://drafts.css-houdini.org/css-paint-api/
+class CORE_EXPORT CSSPaintImageGenerator : public GarbageCollectedFinalized<CSSPaintImageGenerator> {
+public:
+ // This observer is used if the paint worklet doesn't have a javascript
+ // class registered with the correct name yet.
+ // paintImageGeneratorReady is called when the javascript class is
+ // registered and ready to use.
+ class Observer : public GarbageCollectedFinalized<Observer> {
+ public:
+ virtual ~Observer() { };
+ virtual void paintImageGeneratorReady() = 0;
+ DEFINE_INLINE_VIRTUAL_TRACE() { }
+ };
+
+ static CSSPaintImageGenerator* create(const String& name, Document&, Observer*);
+ virtual ~CSSPaintImageGenerator();
+
+ typedef CSSPaintImageGenerator* (*CSSPaintImageGeneratorCreateFunction)(const String&, Document&, Observer*);
+ static void init(CSSPaintImageGeneratorCreateFunction);
+
+ // Invokes the CSS Paint API 'paint' callback. May return a nullptr
+ // representing an invalid image if an error occurred.
+ virtual PassRefPtr<Image> paint(const IntSize&) = 0;
+
+ DEFINE_INLINE_VIRTUAL_TRACE() { }
+};
+
+} // namespace blink
+
+#endif // CSSPaintImageGenerator_h
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/css/CSSPaintImageGenerator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698