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

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

Issue 9148015: Example showing alternate async measurement solution (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Final version Created 8 years, 11 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
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // TODO(jacobr): stop extending eventTarget. 5 // TODO(jacobr): stop extending eventTarget.
6 interface Node extends EventTarget { 6 interface Node extends EventTarget {
7 7
8 NodeList get nodes(); 8 NodeList get nodes();
9 9
10 // TODO: The type of value should be Collection<Node>. See http://b/5392897 10 // TODO: The type of value should be Collection<Node>. See http://b/5392897
11 void set nodes(value); 11 void set nodes(value);
(...skipping 15 matching lines...) Expand all
27 Node remove(); 27 Node remove();
28 28
29 bool contains(Node otherNode); 29 bool contains(Node otherNode);
30 30
31 // TODO(jacobr): remove when/if Array supports a method similar to 31 // TODO(jacobr): remove when/if Array supports a method similar to
32 // insertBefore or we switch NodeList to implement LinkedList rather than 32 // insertBefore or we switch NodeList to implement LinkedList rather than
33 // array. 33 // array.
34 Node insertBefore(Node newChild, Node refChild); 34 Node insertBefore(Node newChild, Node refChild);
35 35
36 Node clone(bool deep); 36 Node clone(bool deep);
37
38 bool get _inDocument();
37 } 39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698