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

Side by Side Diff: sky/benchmarks/resources/fakesky.dart

Issue 1030423002: Move fakesky.dart from examples to benchmark/resources (Closed) Base URL: git@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 unified diff | Download patch
« no previous file with comments | « no previous file | sky/examples/fn/lib/fakesky.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 import 'dart:async'; 1 import 'dart:async';
2 2
3 void assertHasParentNode(Node n) { assert(n.parentNode != null); } 3 void assertHasParentNode(Node n) { assert(n.parentNode != null); }
4 void assertHasParentNodes(List<Node> list) { 4 void assertHasParentNodes(List<Node> list) {
5 for (var n in list) { 5 for (var n in list) {
6 assertHasParentNode(n); 6 assertHasParentNode(n);
7 } 7 }
8 } 8 }
9 9
10 class Node { 10 class Node {
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 Window window = new Window(); 151 Window window = new Window();
152 152
153 class ClientRect { 153 class ClientRect {
154 double top; 154 double top;
155 double right; 155 double right;
156 double bottomr; 156 double bottomr;
157 double left; 157 double left;
158 double width; 158 double width;
159 double height; 159 double height;
160 } 160 }
OLDNEW
« no previous file with comments | « no previous file | sky/examples/fn/lib/fakesky.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698