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

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

Issue 9009002: Promote DOMType to public dart:dom type. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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 | « client/dom/common/implementation.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 // 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 class DOMType extends DOMWrapperBase {
565 // FIXME: Remove if/when Dart supports OLS for all objects.
566 var dartObjectLocalStorage;
567
568 String get typeName() {
569 throw new UnsupportedOperationException("typeName must be overridden.");
570 }
571 }
OLDNEW
« no previous file with comments | « client/dom/common/implementation.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698