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

Side by Side Diff: sky/examples/raw/paint_element_into_displaylist.sky

Issue 1182563002: Remove redundant Paint.setARGB in favor of assigning to Paint.color. (Closed) Base URL: git@github.com:/domokit/mojo.git@master
Patch Set: 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/examples/raw/hello_world.dart ('k') | sky/examples/raw/spinning_arabic.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 <script> 1 <script>
2 import "dart:sky"; 2 import "dart:sky";
3 3
4 void main() { 4 void main() {
5 var root = document.createElement('div'); 5 var root = document.createElement('div');
6 root.style['display'] = 'paragraph'; 6 root.style['display'] = 'paragraph';
7 root.appendChild(new Text('Hello World')); 7 root.appendChild(new Text('Hello World'));
8 document.appendChild(root); 8 document.appendChild(root);
9 root.offsetWidth; // force layout. 9 root.offsetWidth; // force layout.
10 10
11 double width = window.innerWidth.toDouble(); 11 double width = window.innerWidth.toDouble();
12 double height = window.innerHeight.toDouble(); 12 double height = window.innerHeight.toDouble();
13 PictureRecorder recorder = new PictureRecorder(width, height); 13 PictureRecorder recorder = new PictureRecorder(width, height);
14 Paint paint = new Paint()..setARGB(255, 0, 255, 0); 14 Paint paint = new Paint()..color = Color.fromARGB(255, 0, 255, 0);
15 recorder.drawCircle(50.0, 50.0, 50.0, paint); 15 recorder.drawCircle(50.0, 50.0, 50.0, paint);
16 recorder.translate(10.0, 10.0); 16 recorder.translate(10.0, 10.0);
17 root.paint(recorder); 17 root.paint(recorder);
18 recorder.translate(10.0, 10.0); 18 recorder.translate(10.0, 10.0);
19 root.paint(recorder); 19 root.paint(recorder);
20 recorder.translate(10.0, 10.0); 20 recorder.translate(10.0, 10.0);
21 root.paint(recorder); 21 root.paint(recorder);
22 document.rootPicture = recorder.endRecording(); 22 document.rootPicture = recorder.endRecording();
23 } 23 }
24 </script> 24 </script>
OLDNEW
« no previous file with comments | « sky/examples/raw/hello_world.dart ('k') | sky/examples/raw/spinning_arabic.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698