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

Unified Diff: sky/sdk/lib/rendering/object.dart

Issue 1217933002: Rename RenderCanvas to PaintingCanvas to avoid confusion with other classes that inherit from Rende… (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « sky/sdk/lib/rendering/flex.dart ('k') | sky/sdk/lib/rendering/paragraph.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/rendering/object.dart
diff --git a/sky/sdk/lib/rendering/object.dart b/sky/sdk/lib/rendering/object.dart
index 02995bd645f391dc9edd61fa2a7b9e330639a4f8..9624dc32ee022ec8246404ddd7c45fd39cbd9254 100644
--- a/sky/sdk/lib/rendering/object.dart
+++ b/sky/sdk/lib/rendering/object.dart
@@ -26,8 +26,8 @@ class ParentData {
String toString() => '<none>';
}
-class RenderCanvas extends sky.Canvas {
- RenderCanvas(sky.PictureRecorder recorder, Size bounds) : super(recorder, bounds);
+class PaintingCanvas extends sky.Canvas {
+ PaintingCanvas(sky.PictureRecorder recorder, Size bounds) : super(recorder, bounds);
void paintChild(RenderObject child, Point point) {
child.paint(this, point.toOffset());
@@ -243,7 +243,7 @@ abstract class RenderObject extends AbstractNode implements HitTestTarget {
assert(!debugDoingPaint);
scheduler.ensureVisualUpdate();
}
- void paint(RenderCanvas canvas, Offset offset) { }
+ void paint(PaintingCanvas canvas, Offset offset) { }
// EVENTS
« no previous file with comments | « sky/sdk/lib/rendering/flex.dart ('k') | sky/sdk/lib/rendering/paragraph.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698