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

Unified Diff: client/dom/generated/wrapping_dom.js

Issue 8344019: Remove createXMLHttpRequest and other 'factory' constructors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 2 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: client/dom/generated/wrapping_dom.js
diff --git a/client/dom/generated/wrapping_dom.js b/client/dom/generated/wrapping_dom.js
index d24cc646923972b479f4de665f6cb2c36ebe6a84..53674ebed9d6e0a3db0218a0d26e2358a46d6bf7 100644
--- a/client/dom/generated/wrapping_dom.js
+++ b/client/dom/generated/wrapping_dom.js
@@ -26201,46 +26201,6 @@ function native__WorkerContextWrappingImplementation__setTimeout(_this, callback
return __dom_native_TimeoutHander_method(_this, callback, timeout, 'setTimeout');
}
-function native__DOMWindowWrappingImplementation__createFileReader(_this) {
- try {
- return __dom_wrap(new FileReader());
- } catch (e) {
- throw __dom_wrap_exception(e);
- }
-}
-
-function native__DOMWindowWrappingImplementation__createWebKitCSSMatrix(_this) {
- try {
- return __dom_wrap(new WebKitCSSMatrix());
- } catch (e) {
- throw __dom_wrap_exception(e);
- }
-}
-
-function native__DOMWindowWrappingImplementation__createWebKitCSSMatrix_2(_this, cssValue) {
- try {
- return __dom_wrap(new WebKitCSSMatrix(__dom_unwrap(cssValue)));
- } catch (e) {
- throw __dom_wrap_exception(e);
- }
-}
-
-function native__DOMWindowWrappingImplementation__createWebKitPoint(_this, x, y) {
- try {
- return __dom_wrap(new WebKitPoint(x, y));
- } catch (e) {
- throw __dom_wrap_exception(e);
- }
-}
-
-function native__DOMWindowWrappingImplementation__createXMLHttpRequest(_this) {
- try {
- return __dom_wrap(new XMLHttpRequest());
- } catch (e) {
- throw __dom_wrap_exception(e);
- }
-}
-
function native__CanvasRenderingContext2DWrappingImplementation__setFillStyle(_this, color_OR_gradient_OR_pattern) {
try {
_this.$dom.fillStyle = __dom_unwrap(color_OR_gradient_OR_pattern);
« no previous file with comments | « client/dom/generated/src/wrapping/_DOMWindowWrappingImplementation.dart ('k') | client/dom/generated/wrapping_dom_externs.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698