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

Unified Diff: lib/dom/templates/html/impl/impl_Document.darttemplate

Issue 10456006: Wrapperless dart:html for Dartium. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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/templates/html/impl/impl_Document.darttemplate
diff --git a/lib/dom/templates/html/impl/impl_Document.darttemplate b/lib/dom/templates/html/impl/impl_Document.darttemplate
index 4d5a59288df791b5d993a13cdfc3919e6cbed4ef..abf0d78b116bcba2ae857bb097f1ed2a08ce600a 100644
--- a/lib/dom/templates/html/impl/impl_Document.darttemplate
+++ b/lib/dom/templates/html/impl/impl_Document.darttemplate
@@ -25,8 +25,7 @@ $!MEMBERS
$if FROG
_ElementImpl $dom_querySelector(String selectors) native "return this.querySelector(selectors);";
$else
- _ElementImpl $dom_querySelector(String selectors) =>
- _wrap(_ptr.query(selectors));
+ _ElementImpl $dom_querySelector(String selectors) native "Document_querySelector_Callback";
$endif
ElementList queryAll(String selectors) {

Powered by Google App Engine
This is Rietveld 408576698