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

Unified Diff: client/html/src/Node.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/MessagePortWrappingImplementation.dart ('k') | client/html/src/NodeList.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/src/Node.dart
diff --git a/client/html/src/Node.dart b/client/html/src/Node.dart
deleted file mode 100644
index 8f4845e321754623b8cc46c9a909e7c3d19c95cd..0000000000000000000000000000000000000000
--- a/client/html/src/Node.dart
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (c) 2012, 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): stop extending eventTarget.
-interface Node extends EventTarget {
-
- NodeList get nodes();
-
- void set nodes(Collection<Node> value);
-
- Node get nextNode();
-
- Document get document();
-
- Node get parent();
-
- Node get previousNode();
-
- String get text();
-
- void set text(String value);
-
- Node replaceWith(Node otherNode);
-
- Node remove();
-
- bool contains(Node otherNode);
-
- // TODO(jacobr): remove when/if Array supports a method similar to
- // insertBefore or we switch NodeList to implement LinkedList rather than
- // array.
- Node insertBefore(Node newChild, Node refChild);
-
- Node clone(bool deep);
-}
« no previous file with comments | « client/html/src/MessagePortWrappingImplementation.dart ('k') | client/html/src/NodeList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698