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

Side by Side Diff: sky/sdk/lib/framework/layout.dart

Issue 1132063007: Rationalize Dart mojo and sky package structure (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 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 unified diff | Download patch
« no previous file with comments | « sky/sdk/lib/framework/fn.dart ('k') | sky/sdk/lib/framework/layouts/block.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library layout; 1 library layout;
2 2
3 import 'node.dart'; 3 import 'node.dart';
4 import 'dart:sky' as sky; 4 import 'dart:sky' as sky;
5 import 'dart:collection'; 5 import 'dart:collection';
6 6
7 // UTILS 7 // UTILS
8 8
9 // Bridge to legacy CSS-like style specification 9 // Bridge to legacy CSS-like style specification
10 // Eventually we'll replace this with something else 10 // Eventually we'll replace this with something else
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 print(prefix + node.toString() + _attributes(node)); 551 print(prefix + node.toString() + _attributes(node));
552 var children = node.getChildNodes(); 552 var children = node.getChildNodes();
553 prefix = prefix + ' '; 553 prefix = prefix + ' ';
554 for (var child in children) 554 for (var child in children)
555 _serialiseDOM(child, prefix); 555 _serialiseDOM(child, prefix);
556 } 556 }
557 557
558 void dumpState() { 558 void dumpState() {
559 _serialiseDOM(sky.document); 559 _serialiseDOM(sky.document);
560 } 560 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/framework/fn.dart ('k') | sky/sdk/lib/framework/layouts/block.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698