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

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
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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 print(prefix + node.toString() + _attributes(node)); 488 print(prefix + node.toString() + _attributes(node));
489 var children = node.getChildNodes(); 489 var children = node.getChildNodes();
490 prefix = prefix + ' '; 490 prefix = prefix + ' ';
491 for (var child in children) 491 for (var child in children)
492 _serialiseDOM(child, prefix); 492 _serialiseDOM(child, prefix);
493 } 493 }
494 494
495 void dumpState() { 495 void dumpState() {
496 _serialiseDOM(sky.document); 496 _serialiseDOM(sky.document);
497 } 497 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698