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

Unified Diff: sky/sdk/lib/framework/fn2.dart

Issue 1164073002: Fix build after hixie's rename (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/examples/game/lib/sprite_box.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/framework/fn2.dart
diff --git a/sky/sdk/lib/framework/fn2.dart b/sky/sdk/lib/framework/fn2.dart
index f07b549c5f48b95e3b5dfd8baf41d6081f5b1d70..d5622c6a5779602bda9d97284e33b1287880f73b 100644
--- a/sky/sdk/lib/framework/fn2.dart
+++ b/sky/sdk/lib/framework/fn2.dart
@@ -329,9 +329,9 @@ abstract class OneChildRenderObjectWrapper extends RenderObjectWrapper {
OneChildRenderObjectWrapper({ this.child, Object key }) : super(key: key);
- void syncRenderObject(RenderNodeWrapper old) {
- super.syncRenderNode(old);
- UINode oldChild = old == null ? null : (old as OneChildRenderNodeWrapper).child;
+ void syncRenderObject(RenderObjectWrapper old) {
+ super.syncRenderObject(old);
+ UINode oldChild = old == null ? null : (old as OneChildRenderObjectWrapper).child;
syncChild(child, oldChild, null);
}
@@ -437,7 +437,7 @@ abstract class OneChildListRenderObjectWrapper extends RenderObjectWrapper {
}
void removeChild(UINode node) {
- assert(root is ContainerRenderNodeMixin);
+ assert(root is ContainerRenderObjectMixin);
root.remove(node.root);
super.removeChild(node);
}
« no previous file with comments | « sky/examples/game/lib/sprite_box.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698