Index: sky/sdk/lib/framework/rendering/block.dart |
diff --git a/sky/sdk/lib/framework/rendering/block.dart b/sky/sdk/lib/framework/rendering/block.dart |
index 942b0de0d3e95df42273e24799bc4bc8c77ce142..a105f582b415ca41fa23244880e5f2f86231e24b 100644 |
--- a/sky/sdk/lib/framework/rendering/block.dart |
+++ b/sky/sdk/lib/framework/rendering/block.dart |
@@ -4,11 +4,11 @@ |
import 'dart:sky' as sky; |
import 'box.dart'; |
-import 'node.dart'; |
+import 'object.dart'; |
class BlockParentData extends BoxParentData with ContainerParentDataMixin<RenderBox> { } |
-class RenderBlock extends RenderBox with ContainerRenderNodeMixin<RenderBox, BlockParentData>, |
+class RenderBlock extends RenderBox with ContainerRenderObjectMixin<RenderBox, BlockParentData>, |
RenderBoxContainerDefaultsMixin<RenderBox, BlockParentData> { |
// lays out RenderBox children in a vertical stack |
// uses the maximum width provided by the parent |
@@ -68,7 +68,7 @@ class RenderBlock extends RenderBox with ContainerRenderNodeMixin<RenderBox, Blo |
defaultHitTestChildren(result, position: position); |
} |
- void paint(RenderNodeDisplayList canvas) { |
+ void paint(RenderObjectDisplayList canvas) { |
defaultPaint(canvas); |
} |