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

Side by Side Diff: client/dom/common/public.dart

Issue 8395056: Move this to corelib (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 // Common declarations. 1 // Common declarations.
2 2
3 interface Acceleration {} 3 interface Acceleration {}
4 4
5 interface CompareHow {} 5 interface CompareHow {}
6 6
7 typedef void EventListener(Event event); 7 typedef void EventListener(Event event);
8 8
9 interface MediaQueryListListener {} 9 interface MediaQueryListListener {}
10 10
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 } 553 }
554 554
555 // FIXME: remove when prefix is working in the VM. 555 // FIXME: remove when prefix is working in the VM.
556 Window get dom_window() { 556 Window get dom_window() {
557 return window; 557 return window;
558 } 558 }
559 559
560 Document get document() { 560 Document get document() {
561 return window.document; 561 return window.document;
562 } 562 }
563
564 // FIXME(antonm): should be implemented in core lib.
565 void print(arg) {
566 window.console.log(arg.toString());
567 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698