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

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: Remove NodeSelector from dart.idl. 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..1bc9ec61a2b787c723ab7aad65a4a9b8b10e3b1a 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;
@@ -18305,18 +18305,6 @@ interface NodeList extends List<Node> {
// WARNING: Do not edit - generated code.
-interface NodeSelector {
-
- Element querySelector(String selectors);
-
- NodeList querySelectorAll(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
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
interface Notation extends Node {
final String publicId;
« 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