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

Side by Side Diff: client/dom/generated/monkey_dom.js

Issue 8591026: Roll DOM APIs forward on IDL & update Frog DOM (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Switch frog to pull dart/client/dom/frog/frog_dom.dart. Created 9 years, 1 month 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 // DO NOT EDIT 5 // DO NOT EDIT
6 // Auto-generated Dart DOM implementation. 6 // Auto-generated Dart DOM implementation.
7 7
8 function DOM$EnsureDartNull(value) { 8 function DOM$EnsureDartNull(value) {
9 return value === null ? (void 0) : value; 9 return value === null ? (void 0) : value;
10 } 10 }
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 'putImageData', 373 'putImageData',
374 'quadraticCurveTo', 374 'quadraticCurveTo',
375 'rect', 375 'rect',
376 'restore', 376 'restore',
377 'rotate', 377 'rotate',
378 'save', 378 'save',
379 'scale', 379 'scale',
380 'setAlpha', 380 'setAlpha',
381 'setCompositeOperation', 381 'setCompositeOperation',
382 'setFillColor', 382 'setFillColor',
383 'setFillStyle',
384 'setLineCap', 383 'setLineCap',
385 'setLineJoin', 384 'setLineJoin',
386 'setLineWidth', 385 'setLineWidth',
387 'setMiterLimit', 386 'setMiterLimit',
388 'setShadow', 387 'setShadow',
389 'setStrokeColor', 388 'setStrokeColor',
390 'setStrokeStyle',
391 'setTransform', 389 'setTransform',
392 'stroke', 390 'stroke',
393 'strokeRect', 391 'strokeRect',
394 'strokeText', 392 'strokeText',
395 'transform', 393 'transform',
396 'translate']); 394 'translate']);
397 c.prototype.createImageData$member = function() { 395 c.prototype.createImageData$member = function() {
398 return DOM$fixValue$ImageData(this.createImageData.apply(this, arguments)); 396 return DOM$fixValue$ImageData(this.createImageData.apply(this, arguments));
399 }; 397 };
400 c.prototype.getImageData$member = function() { 398 c.prototype.getImageData$member = function() {
(...skipping 6843 matching lines...) Expand 10 before | Expand all | Expand 10 after
7244 function native__NativeDomGlobalProperties_getWindow() { 7242 function native__NativeDomGlobalProperties_getWindow() {
7245 // TODO: Should the window be obtained from an isolate? 7243 // TODO: Should the window be obtained from an isolate?
7246 return window; 7244 return window;
7247 } 7245 }
7248 7246
7249 // Declared in src/GlobalProperties.dart 7247 // Declared in src/GlobalProperties.dart
7250 function native__NativeDomGlobalProperties_getDocument() { 7248 function native__NativeDomGlobalProperties_getDocument() {
7251 // TODO: Should the window be obtained from an isolate? 7249 // TODO: Should the window be obtained from an isolate?
7252 return window.document; 7250 return window.document;
7253 } 7251 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698