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

Unified Diff: lib/dom/dom.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
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | lib/dom/idl/dart/dart.idl » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/dom.dart
diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
index 3b2e53c39efe2b68517a14b4150f0b3b3ffabd11..aafc73817968b2b89f90dae45b88a9cf3d3f7826 100644
--- a/lib/dom/dom.dart
+++ b/lib/dom/dom.dart
@@ -2186,7 +2186,7 @@ interface DirectoryReaderSync {
// WARNING: Do not edit - generated code.
-interface Document extends Node, NodeSelector {
+interface Document extends Node {
final String URL;
@@ -2352,7 +2352,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);
@@ -2416,7 +2416,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;
@@ -6318,9 +6318,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 | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | lib/dom/idl/dart/dart.idl » ('J')

Powered by Google App Engine
This is Rietveld 408576698