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

Unified Diff: lib/dom/frog/dom_frog.dart

Issue 10536006: Fix NodeSelector interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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
Index: lib/dom/frog/dom_frog.dart
diff --git a/lib/dom/frog/dom_frog.dart b/lib/dom/frog/dom_frog.dart
index 2f62f9df6a6691cfbf68123af043a5ffdb168b7c..64de2ae8d7434609e04261a8ed94c5d2b704e0c9 100644
--- a/lib/dom/frog/dom_frog.dart
+++ b/lib/dom/frog/dom_frog.dart
@@ -14175,7 +14175,7 @@ interface DirectoryReaderSync {
// WARNING: Do not edit - generated code.
-interface Document extends Node, NodeSelector {
+interface Document extends Node {
final String URL;
@@ -14341,7 +14341,7 @@ interface Document extends Node, NodeSelector {
// WARNING: Do not edit - generated code.
-interface DocumentFragment extends Node, NodeSelector {
+interface DocumentFragment extends Node {
Element querySelector(String selectors);
@@ -14405,7 +14405,7 @@ interface EXTTextureFilterAnisotropic {
// WARNING: Do not edit - generated code.
-interface Element extends Node, NodeSelector, ElementTraversal {
+interface Element extends Node, ElementTraversal {
static final int ALLOW_KEYBOARD_INPUT = 1;
@@ -18307,9 +18307,9 @@ interface NodeList extends List<Node> {
interface NodeSelector {
- Element querySelector(String selectors);
+ Element query(String selectors);
- NodeList querySelectorAll(String selectors);
+ NodeList queryAll(String selectors);
}
// 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
« no previous file with comments | « lib/dom/dom.dart ('k') | lib/dom/idl/dart/dart.idl » ('j') | lib/dom/idl/dart/dart.idl » ('J')

Powered by Google App Engine
This is Rietveld 408576698