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

Unified Diff: lib/dom/idl/dart/dart.idl

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 | « lib/dom/frog/dom_frog.dart ('k') | lib/dom/templates/html/interface/interface_Element.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/idl/dart/dart.idl
diff --git a/lib/dom/idl/dart/dart.idl b/lib/dom/idl/dart/dart.idl
index 089643559e0f3bc16c480006d0fffbdfca8aa144..f3b5b1964dfab82798d5988fd24391d62d9f39e1 100644
--- a/lib/dom/idl/dart/dart.idl
+++ b/lib/dom/idl/dart/dart.idl
@@ -36,12 +36,9 @@ module core {
module dom {
// Force NodeSelector. WebKit defines these operations directly.
Anton Muhin 2012/06/05 11:41:59 this comment can probably go away now.
podivilov 2012/06/05 11:57:21 NodeSelector here looks pretty confusing... Moved
interface NodeSelector {
- Element querySelector(in DOMString selectors);
- NodeList querySelectorAll(in DOMString selectors);
+ Element query(in DOMString selectors);
+ NodeList queryAll(in DOMString selectors);
};
- Document implements NodeSelector;
- DocumentFragment implements NodeSelector;
- Element implements NodeSelector;
// Force ElementTraversal. WebKit defines these directly.
interface ElementTraversal {
« no previous file with comments | « lib/dom/frog/dom_frog.dart ('k') | lib/dom/templates/html/interface/interface_Element.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698