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

Side by Side Diff: client/html/src/NotificationWrappingImplementation.dart

Issue 9655009: Remove files that have already been ported or do not need to be ported. (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
« no previous file with comments | « client/html/src/Notification.dart ('k') | client/html/src/ObjectElement.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // TODO(jacobr) add custom Events class.
6 class NotificationWrappingImplementation extends EventTargetWrappingImplementati on implements Notification {
7 NotificationWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
8
9 String get dir() { return _ptr.dir; }
10
11 void set dir(String value) { _ptr.dir = value; }
12
13 EventListener get onclick() { return LevelDom.wrapEventListener(_ptr.onclick); }
14
15 void set onclick(EventListener value) { _ptr.onclick = LevelDom.unwrap(value); }
16
17 EventListener get onclose() { return LevelDom.wrapEventListener(_ptr.onclose); }
18
19 void set onclose(EventListener value) { _ptr.onclose = LevelDom.unwrap(value); }
20
21 EventListener get ondisplay() { return LevelDom.wrapEventListener(_ptr.ondispl ay); }
22
23 void set ondisplay(EventListener value) { _ptr.ondisplay = LevelDom.unwrap(val ue); }
24
25 EventListener get onerror() { return LevelDom.wrapEventListener(_ptr.onerror); }
26
27 void set onerror(EventListener value) { _ptr.onerror = LevelDom.unwrap(value); }
28
29 String get replaceId() { return _ptr.replaceId; }
30
31 void set replaceId(String value) { _ptr.replaceId = value; }
32
33 void cancel() {
34 _ptr.cancel();
35 return;
36 }
37
38 void show() {
39 _ptr.show();
40 return;
41 }
42
43 String get typeName() { return "Notification"; }
44 }
OLDNEW
« no previous file with comments | « client/html/src/Notification.dart ('k') | client/html/src/ObjectElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698