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

Side by Side Diff: client/html/generated/html/frog/DocumentFragment.dart

Issue 9600035: Enable new dart:html wrapperless frog bindings and wrapper dartium bindings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Handle all code review comments Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment native "*DocumentFragment" { 2 class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment native "*DocumentFragment" {
3 3
4 _ElementImpl query(String selectors) native "return this.querySelector(selecto rs);"; 4 _ElementImpl query(String selectors) native "return this.querySelector(selecto rs);";
5 5
6 _NodeListImpl queryAll(String selectors) native "return this.querySelectorAll( selectors);"; 6 _NodeListImpl _querySelectorAll(String selectors) native "return this.querySel ectorAll(selectors);";
7 } 7 }
OLDNEW
« no previous file with comments | « client/html/generated/html/frog/Document.dart ('k') | client/html/generated/html/frog/Element.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698