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

Side by Side Diff: sky/tests/resources/display_list.dart

Issue 1177383006: Rename all the things (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix imports 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 unified diff | Download patch
« no previous file with comments | « sky/tests/raw/render_flex.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 import 'dart:sky' as sky; 2 import 'dart:sky' as sky;
3 3
4 import 'package:sky/framework/rendering/box.dart'; 4 import 'package:sky/rendering/box.dart';
5 import 'package:sky/framework/rendering/object.dart'; 5 import 'package:sky/rendering/object.dart';
6 6
7 typedef void Logger (String s); 7 typedef void Logger (String s);
8 8
9 class TestDisplayList extends RenderObjectDisplayList { 9 class TestDisplayList extends RenderObjectDisplayList {
10 TestDisplayList(double width, double height, this.logger, { this.indent: '' }) : 10 TestDisplayList(double width, double height, this.logger, { this.indent: '' }) :
11 this.width = width, 11 this.width = width,
12 this.height = height, 12 this.height = height,
13 super(width, height) { 13 super(width, height) {
14 log("TestDisplayList() constructor: $width x $height"); 14 log("TestDisplayList() constructor: $width x $height");
15 } 15 }
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 RenderObject.debugDoingPaint = false; 142 RenderObject.debugDoingPaint = false;
143 } 143 }
144 144
145 void checkFrame() { 145 void checkFrame() {
146 RenderObject.flushLayout(); 146 RenderObject.flushLayout();
147 paintFrame(); 147 paintFrame();
148 print(lastPaint); // TODO(ianh): figure out how to make this fit the unit te sting framework better 148 print(lastPaint); // TODO(ianh): figure out how to make this fit the unit te sting framework better
149 } 149 }
150 150
151 } 151 }
OLDNEW
« no previous file with comments | « sky/tests/raw/render_flex.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698