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

Unified Diff: sky/sdk/lib/framework/rendering/stack.dart

Issue 1165013003: Rename RenderNode to RenderObject. (Closed) Base URL: https://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/framework/rendering/paragraph.dart ('k') | sky/tests/raw/box_layout.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/framework/rendering/stack.dart
diff --git a/sky/sdk/lib/framework/rendering/stack.dart b/sky/sdk/lib/framework/rendering/stack.dart
index adad8ce6b90b3f2e6c877d91f65d2d3e2c59879c..44e1a7f59ffeae58fc41514d29bfaf27aba68490 100644
--- a/sky/sdk/lib/framework/rendering/stack.dart
+++ b/sky/sdk/lib/framework/rendering/stack.dart
@@ -4,11 +4,11 @@
import 'dart:sky' as sky;
import 'box.dart';
-import 'node.dart';
+import 'object.dart';
class StackParentData extends BoxParentData with ContainerParentDataMixin<RenderBox> { }
-class RenderStack extends RenderBox with ContainerRenderNodeMixin<RenderBox, StackParentData>,
+class RenderStack extends RenderBox with ContainerRenderObjectMixin<RenderBox, StackParentData>,
RenderBoxContainerDefaultsMixin<RenderBox, StackParentData> {
RenderStack({
List<RenderBox> children
@@ -46,7 +46,7 @@ class RenderStack extends RenderBox with ContainerRenderNodeMixin<RenderBox, Sta
defaultHitTestChildren(result, position: position);
}
- void paint(RenderNodeDisplayList canvas) {
+ void paint(RenderObjectDisplayList canvas) {
defaultPaint(canvas);
}
}
« no previous file with comments | « sky/sdk/lib/framework/rendering/paragraph.dart ('k') | sky/tests/raw/box_layout.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698