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

Side by Side Diff: client/html/generated/html/frog/Notification.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1
2 class _NotificationImpl extends _EventTargetImpl implements Notification native "*Notification" {
3
4 String dir;
5
6 String replaceId;
7
8 _NotificationEventsImpl get on() =>
9 new _NotificationEventsImpl(this);
10
11 void cancel() native;
12
13 void show() native;
14 }
15
16 class _NotificationEventsImpl extends _EventsImpl implements NotificationEvents {
17 _NotificationEventsImpl(_ptr) : super(_ptr);
18
19 EventListenerList get click() => _get('click');
20
21 EventListenerList get close() => _get('close');
22
23 EventListenerList get display() => _get('display');
24
25 EventListenerList get error() => _get('error');
26
27 EventListenerList get show() => _get('show');
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698