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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/html/src/Notification.dart ('k') | client/html/src/ObjectElement.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/src/NotificationWrappingImplementation.dart
diff --git a/client/html/src/NotificationWrappingImplementation.dart b/client/html/src/NotificationWrappingImplementation.dart
deleted file mode 100644
index a9d3171be23759c6b9f886ea8e812fa49a303dc0..0000000000000000000000000000000000000000
--- a/client/html/src/NotificationWrappingImplementation.dart
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// TODO(jacobr) add custom Events class.
-class NotificationWrappingImplementation extends EventTargetWrappingImplementation implements Notification {
- NotificationWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
-
- String get dir() { return _ptr.dir; }
-
- void set dir(String value) { _ptr.dir = value; }
-
- EventListener get onclick() { return LevelDom.wrapEventListener(_ptr.onclick); }
-
- void set onclick(EventListener value) { _ptr.onclick = LevelDom.unwrap(value); }
-
- EventListener get onclose() { return LevelDom.wrapEventListener(_ptr.onclose); }
-
- void set onclose(EventListener value) { _ptr.onclose = LevelDom.unwrap(value); }
-
- EventListener get ondisplay() { return LevelDom.wrapEventListener(_ptr.ondisplay); }
-
- void set ondisplay(EventListener value) { _ptr.ondisplay = LevelDom.unwrap(value); }
-
- EventListener get onerror() { return LevelDom.wrapEventListener(_ptr.onerror); }
-
- void set onerror(EventListener value) { _ptr.onerror = LevelDom.unwrap(value); }
-
- String get replaceId() { return _ptr.replaceId; }
-
- void set replaceId(String value) { _ptr.replaceId = value; }
-
- void cancel() {
- _ptr.cancel();
- return;
- }
-
- void show() {
- _ptr.show();
- return;
- }
-
- String get typeName() { return "Notification"; }
-}
« 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