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

Unified Diff: client/dom/src/native_FactoryProvidersImplementation.dart

Issue 9428050: Automatically generate most constructors (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: add test Created 8 years, 10 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
« no previous file with comments | « client/dom/src/native_FactoryProviders.dart ('k') | client/dom/src/wrapping_FactoryProviders.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/src/native_FactoryProvidersImplementation.dart
diff --git a/client/dom/src/native_FactoryProvidersImplementation.dart b/client/dom/src/native_FactoryProvidersImplementation.dart
index 93636f7f41d5822cb5b7e06b6f181293558de690..d3833b8250ff75364081e1ab382ebd7ce0e8884c 100644
--- a/client/dom/src/native_FactoryProvidersImplementation.dart
+++ b/client/dom/src/native_FactoryProvidersImplementation.dart
@@ -7,6 +7,28 @@ class FactoryProviderImplementation {
static DOMParser createDOMParser() native "DOMParser_constructor_Callback";
static FileReader createFileReader() native "FileReader_constructor_Callback";
+ static EventSource createEventSource(String scriptUrl) native "EventSource_constructor_Callback";
+
+ static MediaStream createMediaStream(MediaStreamTrackList audioTracks,
+ MediaStreamTrackList videoTracks)
+ native "MediaStream_constructor_Callback";
+
+ static PeerConnection createPeerConnection(
+ String serverConfiguration,
+ SignalingCallback signalingCallback)
+ native "PeerConnection_constructor_Callback";
+
+ static ShadowRoot createShadowRoot(Element host)
+ native "ShadowRoot_constructor_Callback";
+
+ static SharedWorker createSharedWorker(String scriptURL, String name)
+ native "SharedWorker_constructor_Callback";
+
+ static TextTrackCue createTextTrackCue(
+ String id, num startTime, num endTime, String text,
+ String settings, bool pauseOnExit)
+ native "TextTrackCue_constructor_Callback";
+
static Float32Array F32(_arg0, [_arg1, _arg2]) native "Float32Array_constructor_Callback";
static Float64Array F64(_arg0, [_arg1, _arg2]) native "Float64Array_constructor_Callback";
static Int8Array I8(_arg0, [_arg1, _arg2]) native "Int8Array_constructor_Callback";
@@ -19,6 +41,7 @@ class FactoryProviderImplementation {
static WebKitCSSMatrix createWebKitCSSMatrix([String spec = '']) native "WebKitCSSMatrix_constructor_Callback";
static WebKitPoint createWebKitPoint(num x, num y) native "WebKitPoint_constructor_Callback";
static WebSocket createWebSocket(String url) native "WebSocket_constructor_Callback";
+ static Worker createWorkder(String scriptUrl) native "Worker_constructor_Callback";
static XMLHttpRequest createXMLHttpRequest() native "XMLHttpRequest_constructor_Callback";
static XSLTProcessor createXSLTProcessor() native "XSLTProcessor_constructor_Callback";
}
« no previous file with comments | « client/dom/src/native_FactoryProviders.dart ('k') | client/dom/src/wrapping_FactoryProviders.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698