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

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

Issue 9705040: Generate factory providers for systemnative (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 9 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/src/native_FactoryProvidersImplementation.dart
diff --git a/client/dom/src/native_FactoryProvidersImplementation.dart b/client/dom/src/native_FactoryProvidersImplementation.dart
index 546f756ea40e9cbc822980f8b14d9d7a74317a40..b415c6d1d4a41236571c3bf5bc063e3981e11077 100644
--- a/client/dom/src/native_FactoryProvidersImplementation.dart
+++ b/client/dom/src/native_FactoryProvidersImplementation.dart
@@ -1,46 +1,13 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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
// BSD-style license that can be found in the LICENSE file.
+// These factory provider implementation functions are for interfaces that do
+// not have factory provider implementation functions generated automatically
+// from a Constructor or NamedConstructor extended attribute.
+
class FactoryProviderImplementation {
static AudioContext createAudioContext() native "AudioContext_constructor_Callback";
- static DOMParser createDOMParser() native "DOMParser_constructor_Callback";
- static DOMURL createDOMURL() native "DOMURL_constructor_Callback";
- static DeprecatedPeerConnection createDeprecatedPeerConnection(
- String serverConfiguration,
- SignalingCallback signalingCallback)
- native "DeprecatedPeerConnection_constructor_Callback";
-
- static FileReader createFileReader() native "FileReader_constructor_Callback";
- static FileReaderSync createFileReaderSync() native "FileReaderSync_constructor_Callback";
-
- static EventSource createEventSource(String scriptUrl) native "EventSource_constructor_Callback";
-
- static HTMLAudioElement createHTMLAudioElement([String src]) native "HTMLAudioElement_constructor_Callback";
-
- static HTMLOptionElement createHTMLOptionElement([String data, String value, bool defaultSelected, bool selected]) native "HTMLOptionElement_constructor_Callback";
-
- static MediaController createMediaController() native "MediaController_constructor_Callback";
-
- static MediaStream createMediaStream(MediaStreamTrackList audioTracks,
- MediaStreamTrackList videoTracks)
- native "MediaStream_constructor_Callback";
-
- static MessageChannel createMessageChannel() native "MessageChannel_constructor_Callback";
-
- static ShadowRoot createShadowRoot(Element host)
- native "ShadowRoot_constructor_Callback";
-
- static SharedWorker createSharedWorker(String scriptURL, String name)
- native "SharedWorker_constructor_Callback";
-
- static SpeechGrammar createSpeechGrammar() native "SpeechGrammar_constructor_Callback";
- static SpeechGrammarList createSpeechGrammarList() native "SpeechGrammarList_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";
@@ -51,13 +18,6 @@ class FactoryProviderImplementation {
static Uint16Array U16(_arg0, [_arg1, _arg2]) native "Uint16Array_constructor_Callback";
static Uint32Array U32(_arg0, [_arg1, _arg2]) native "Uint32Array_constructor_Callback";
- static WebKitBlobBuilder createWebKitBlobBuilder() native "WebKitBlobBuilder_constructor_Callback";
- 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 XMLSerializer createXMLSerializer() native "XMLSerializer_constructor_Callback";
- static XPathEvaluator createXPathEvaluator() native "XPathEvaluator_constructor_Callback";
- static XSLTProcessor createXSLTProcessor() native "XSLTProcessor_constructor_Callback";
}
« no previous file with comments | « client/dom/src/native_FactoryProviders.dart ('k') | client/dom/templates/dom/native/factoryprovider.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698