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

Unified Diff: sky/engine/core/painting/PaintingTasks.h

Issue 1122423009: Make it possible to custom-paint without an Element. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Comment tweak Created 5 years, 7 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: sky/engine/core/painting/PaintingTasks.h
diff --git a/sky/engine/core/painting/PaintingTasks.h b/sky/engine/core/painting/PaintingTasks.h
index 792477c05b086170d18f7c8e70fbecb7905b2a29..bd9a20e8d4b494b50275693b568ef0004c48e75f 100644
--- a/sky/engine/core/painting/PaintingTasks.h
+++ b/sky/engine/core/painting/PaintingTasks.h
@@ -11,12 +11,13 @@
namespace blink {
class DisplayList;
class Element;
+class Node;
class PaintingCallback;
class PaintingTasks {
public:
static void enqueueRequest(PassRefPtr<Element>, PassOwnPtr<PaintingCallback>);
- static void enqueueCommit(PassRefPtr<Element>, PassRefPtr<DisplayList>);
+ static void enqueueCommit(PassRefPtr<Node>, PassRefPtr<DisplayList>);
static bool serviceRequests();
static void drainCommits();

Powered by Google App Engine
This is Rietveld 408576698