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

Side by Side Diff: client/dom/generated/src/wrapping/_DocumentWrappingImplementation.dart

Issue 9103001: Revert "Refresh dart:dom" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _DocumentWrappingImplementation extends _NodeWrappingImplementation implem ents Document { 7 class _DocumentWrappingImplementation extends _NodeWrappingImplementation implem ents Document {
8 _DocumentWrappingImplementation() : super() {} 8 _DocumentWrappingImplementation() : super() {}
9 9
10 static create__DocumentWrappingImplementation() native { 10 static create__DocumentWrappingImplementation() native {
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 CSSStyleDeclaration getOverrideStyle(Element element, String pseudoElement) { 297 CSSStyleDeclaration getOverrideStyle(Element element, String pseudoElement) {
298 return _getOverrideStyle(this, element, pseudoElement); 298 return _getOverrideStyle(this, element, pseudoElement);
299 } 299 }
300 static CSSStyleDeclaration _getOverrideStyle(receiver, element, pseudoElement) native; 300 static CSSStyleDeclaration _getOverrideStyle(receiver, element, pseudoElement) native;
301 301
302 DOMSelection getSelection() { 302 DOMSelection getSelection() {
303 return _getSelection(this); 303 return _getSelection(this);
304 } 304 }
305 static DOMSelection _getSelection(receiver) native; 305 static DOMSelection _getSelection(receiver) native;
306 306
307 Node importNode(Node importedNode, [bool deep = null]) { 307 Node importNode(Node importedNode, bool deep) {
308 if (deep === null) { 308 return _importNode(this, importedNode, deep);
309 return _importNode(this, importedNode);
310 } else {
311 return _importNode_2(this, importedNode, deep);
312 }
313 } 309 }
314 static Node _importNode(receiver, importedNode) native; 310 static Node _importNode(receiver, importedNode, deep) native;
315 static Node _importNode_2(receiver, importedNode, deep) native;
316 311
317 bool queryCommandEnabled(String command) { 312 bool queryCommandEnabled(String command) {
318 return _queryCommandEnabled(this, command); 313 return _queryCommandEnabled(this, command);
319 } 314 }
320 static bool _queryCommandEnabled(receiver, command) native; 315 static bool _queryCommandEnabled(receiver, command) native;
321 316
322 bool queryCommandIndeterm(String command) { 317 bool queryCommandIndeterm(String command) {
323 return _queryCommandIndeterm(this, command); 318 return _queryCommandIndeterm(this, command);
324 } 319 }
325 static bool _queryCommandIndeterm(receiver, command) native; 320 static bool _queryCommandIndeterm(receiver, command) native;
(...skipping 22 matching lines...) Expand all
348 return _querySelectorAll(this, selectors); 343 return _querySelectorAll(this, selectors);
349 } 344 }
350 static NodeList _querySelectorAll(receiver, selectors) native; 345 static NodeList _querySelectorAll(receiver, selectors) native;
351 346
352 void webkitCancelFullScreen() { 347 void webkitCancelFullScreen() {
353 _webkitCancelFullScreen(this); 348 _webkitCancelFullScreen(this);
354 return; 349 return;
355 } 350 }
356 static void _webkitCancelFullScreen(receiver) native; 351 static void _webkitCancelFullScreen(receiver) native;
357 352
358 WebKitNamedFlow webkitGetFlowByName(String name) {
359 return _webkitGetFlowByName(this, name);
360 }
361 static WebKitNamedFlow _webkitGetFlowByName(receiver, name) native;
362
363 String get typeName() { return "Document"; } 353 String get typeName() { return "Document"; }
364 } 354 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698