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

Unified Diff: dart/sdk/lib/html/dartium/html_dartium.dart

Issue 328663002: Version 1.5.0-dev.4.5 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 6 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:
Download patch
« no previous file with comments | « dart/sdk/lib/html/dart2js/html_dart2js.dart ('k') | dart/sdk/lib/svg/dart2js/svg_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/sdk/lib/html/dartium/html_dartium.dart
===================================================================
--- dart/sdk/lib/html/dartium/html_dartium.dart (revision 37109)
+++ dart/sdk/lib/html/dartium/html_dartium.dart (working copy)
@@ -1226,10 +1226,6 @@
// To suppress missing implicit constructor warnings.
factory BeforeLoadEvent._() { throw new UnsupportedError("Not supported"); }
- @DomName('BeforeLoadEvent.url')
- @DocsEditable()
- String get url => _blink.Native_BeforeLoadEvent_url_Getter(this);
-
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
@@ -1962,36 +1958,6 @@
// To suppress missing implicit constructor warnings.
factory CanvasRenderingContext2D._() { throw new UnsupportedError("Not supported"); }
- /**
- * The current default path of this canvas context, if there is one.
- *
- * ## Other resources
- *
- * * [Current default path]
- * (http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#current-default-path)
- * from WHATWG.
- */
- @DomName('CanvasRenderingContext2D.currentPath')
- @DocsEditable()
- // http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#path-objects
- @Experimental()
- Path get currentPath => _blink.Native_CanvasRenderingContext2D_currentPath_Getter(this);
-
- /**
- * The current default path of this canvas context, if there is one.
- *
- * ## Other resources
- *
- * * [Current default path]
- * (http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#current-default-path)
- * from WHATWG.
- */
- @DomName('CanvasRenderingContext2D.currentPath')
- @DocsEditable()
- // http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#path-objects
- @Experimental()
- void set currentPath(Path value) => _blink.Native_CanvasRenderingContext2D_currentPath_Setter(this, value);
-
@DomName('CanvasRenderingContext2D.currentTransform')
@DocsEditable()
@Experimental() // untriaged
@@ -2319,16 +2285,7 @@
@DocsEditable()
void translate(num tx, num ty) => _blink.Native_CanvasRenderingContext2D_translate_Callback(this, tx, ty);
- @DomName('CanvasRenderingContext2D.webkitGetImageDataHD')
- @DocsEditable()
- @SupportedBrowser(SupportedBrowser.CHROME)
- @SupportedBrowser(SupportedBrowser.SAFARI)
- @Experimental()
- ImageData getImageDataHD(num sx, num sy, num sw, num sh) => _blink.Native_CanvasRenderingContext2D_webkitGetImageDataHD_Callback(this, sx, sy, sw, sh);
- void putImageDataHD(ImageData imagedata, num dx, num dy, [num dirtyX, num dirtyY, num dirtyWidth, num dirtyHeight]) => _blink.Native_CanvasRenderingContext2D_putImageDataHD(this, imagedata, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight);
-
-
/**
* Sets the color used inside shapes.
* [r], [g], [b] are 0-255, [a] is 0-1.
@@ -8525,11 +8482,6 @@
// To suppress missing implicit constructor warnings.
factory DomImplementation._() { throw new UnsupportedError("Not supported"); }
- @DomName('DOMImplementation.createCSSStyleSheet')
- @DocsEditable()
- @Experimental() // non-standard
- CssStyleSheet createCssStyleSheet(String title, String media) => _blink.Native_DOMImplementation_createCSSStyleSheet_Callback(this, title, media);
-
@DomName('DOMImplementation.createDocument')
@DocsEditable()
XmlDocument createDocument(String namespaceURI, String qualifiedName, _DocumentType doctype) => _blink.Native_DOMImplementation_createDocument_Callback(this, namespaceURI, qualifiedName, doctype);
@@ -13684,7 +13636,7 @@
@DocsEditable()
// http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2012-October/037711.html
@Experimental()
- void requestAutocomplete() => _blink.Native_HTMLFormElement_requestAutocomplete_Callback(this);
+ void requestAutocomplete(Map details) => _blink.Native_HTMLFormElement_requestAutocomplete_Callback(this, details);
@DomName('HTMLFormElement.reset')
@DocsEditable()
@@ -16976,38 +16928,6 @@
// http://www.whatwg.org/specs/web-apps/current-work/multipage/states-of-the-type-attribute.html#concept-input-type-file-selected
List<Entry> get entries => _blink.Native_HTMLInputElement_webkitEntries_Getter(this);
- @DomName('HTMLInputElement.webkitGrammar')
- @DocsEditable()
- @SupportedBrowser(SupportedBrowser.CHROME)
- @SupportedBrowser(SupportedBrowser.SAFARI)
- @Experimental()
- // http://lists.w3.org/Archives/Public/public-xg-htmlspeech/2011Feb/att-0020/api-draft.html#attrib-grammar
- bool get grammar => _blink.Native_HTMLInputElement_webkitGrammar_Getter(this);
-
- @DomName('HTMLInputElement.webkitGrammar')
- @DocsEditable()
- @SupportedBrowser(SupportedBrowser.CHROME)
- @SupportedBrowser(SupportedBrowser.SAFARI)
- @Experimental()
- // http://lists.w3.org/Archives/Public/public-xg-htmlspeech/2011Feb/att-0020/api-draft.html#attrib-grammar
- void set grammar(bool value) => _blink.Native_HTMLInputElement_webkitGrammar_Setter(this, value);
-
- @DomName('HTMLInputElement.webkitSpeech')
- @DocsEditable()
- @SupportedBrowser(SupportedBrowser.CHROME)
- @SupportedBrowser(SupportedBrowser.SAFARI)
- @Experimental()
- // http://lists.w3.org/Archives/Public/public-xg-htmlspeech/2011Feb/att-0020/api-draft.html#attrib-speech
- bool get speech => _blink.Native_HTMLInputElement_webkitSpeech_Getter(this);
-
- @DomName('HTMLInputElement.webkitSpeech')
- @DocsEditable()
- @SupportedBrowser(SupportedBrowser.CHROME)
- @SupportedBrowser(SupportedBrowser.SAFARI)
- @Experimental()
- // http://lists.w3.org/Archives/Public/public-xg-htmlspeech/2011Feb/att-0020/api-draft.html#attrib-speech
- void set speech(bool value) => _blink.Native_HTMLInputElement_webkitSpeech_Setter(this, value);
-
@DomName('HTMLInputElement.webkitdirectory')
@DocsEditable()
@SupportedBrowser(SupportedBrowser.CHROME)
@@ -24841,14 +24761,6 @@
@DocsEditable()
Element get activeElement => _blink.Native_ShadowRoot_activeElement_Getter(this);
- @DomName('ShadowRoot.applyAuthorStyles')
- @DocsEditable()
- bool get _applyAuthorStyles => _blink.Native_ShadowRoot_applyAuthorStyles_Getter(this);
-
- @DomName('ShadowRoot.applyAuthorStyles')
- @DocsEditable()
- void set _applyAuthorStyles(bool value) => _blink.Native_ShadowRoot_applyAuthorStyles_Setter(this, value);
-
@DomName('ShadowRoot.host')
@DocsEditable()
@Experimental() // untriaged
@@ -25407,10 +25319,6 @@
// To suppress missing implicit constructor warnings.
factory SpeechInputEvent._() { throw new UnsupportedError("Not supported"); }
- @DomName('SpeechInputEvent.results')
- @DocsEditable()
- List<SpeechInputResult> get results => _blink.Native_SpeechInputEvent_results_Getter(this);
-
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
@@ -25427,14 +25335,6 @@
// To suppress missing implicit constructor warnings.
factory SpeechInputResult._() { throw new UnsupportedError("Not supported"); }
- @DomName('SpeechInputResult.confidence')
- @DocsEditable()
- double get confidence => _blink.Native_SpeechInputResult_confidence_Getter(this);
-
- @DomName('SpeechInputResult.utterance')
- @DocsEditable()
- String get utterance => _blink.Native_SpeechInputResult_utterance_Getter(this);
-
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
@@ -27525,11 +27425,6 @@
@Experimental() // untriaged
Player get player => _blink.Native_TimedItem_player_Getter(this);
- @DomName('TimedItem.specified')
- @DocsEditable()
- @Experimental() // untriaged
- Timing get specified => _blink.Native_TimedItem_specified_Getter(this);
-
@DomName('TimedItem.startTime')
@DocsEditable()
@Experimental() // untriaged
@@ -31048,11 +30943,6 @@
// To suppress missing implicit constructor warnings.
factory WorkerCrypto._() { throw new UnsupportedError("Not supported"); }
- @DomName('WorkerCrypto.getRandomValues')
- @DocsEditable()
- @Experimental() // untriaged
- TypedData getRandomValues(TypedData array) => _blink.Native_WorkerCrypto_getRandomValues_Callback(this, array);
-
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
@@ -31124,14 +31014,6 @@
@Experimental() // untriaged
WorkerGlobalScope get self => _blink.Native_WorkerGlobalScope_self_Getter(this);
- @DomName('WorkerGlobalScope.webkitNotifications')
- @DocsEditable()
- @SupportedBrowser(SupportedBrowser.CHROME)
- @SupportedBrowser(SupportedBrowser.SAFARI)
- @Experimental()
- @Experimental() // untriaged
- _NotificationCenter get _webkitNotifications => _blink.Native_WorkerGlobalScope_webkitNotifications_Getter(this);
-
@DomName('WorkerGlobalScope.close')
@DocsEditable()
@Experimental() // untriaged
« no previous file with comments | « dart/sdk/lib/html/dart2js/html_dart2js.dart ('k') | dart/sdk/lib/svg/dart2js/svg_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698