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

Unified Diff: sky/framework/components/action_bar.dart

Issue 1043283003: [Effen] s/Node/UINode/, s/Element/WrapperNode/, s/EventTarget/EventListenerNode/ (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 9 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/framework/README.md ('k') | sky/framework/components/button.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/framework/components/action_bar.dart
diff --git a/sky/framework/components/action_bar.dart b/sky/framework/components/action_bar.dart
index cf8bc6ff208da21740f7434d46a586ec40bf5545..069e7031ae63f4d6e8ffb28ad05e14d6273b24b5 100644
--- a/sky/framework/components/action_bar.dart
+++ b/sky/framework/components/action_bar.dart
@@ -19,9 +19,9 @@ class ActionBar extends Component {
padding-left: 24px;
flex: 1;''');
- Node left;
- Node center;
- List<Node> right;
+ UINode left;
+ UINode center;
+ List<UINode> right;
ActionBar({
String key,
@@ -30,8 +30,8 @@ class ActionBar extends Component {
this.right
}) : super(key: key);
- Node build() {
- List<Node> children = [left, new StyleNode(center, _centerStyle)];
+ UINode build() {
+ List<UINode> children = [left, new StyleNode(center, _centerStyle)];
if (right != null)
children.addAll(right);
« no previous file with comments | « sky/framework/README.md ('k') | sky/framework/components/button.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698