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

Side by Side Diff: client/dom/src/native_FactoryProvidersImplementation.dart

Issue 9290020: Add support for native bindings generation to dartgenerator.py. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: . 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 class FactoryProviderImplementation {
6 static AudioContext createAudioContext() native "AudioContext_constructor_Call back";
7 static FileReader createFileReader() native "FileReader_constructor_Callback";
8
9 static Float32Array F32(_arg0, [_arg1, _arg2]) native "Float32Array_constructo r_Callback";
10 static Float64Array F64(_arg0, [_arg1, _arg2]) native "Float64Array_constructo r_Callback";
11 static Int8Array I8(_arg0, [_arg1, _arg2]) native "Int8Array_constructor_Callb ack";
12 static Int16Array I16(_arg0, [_arg1, _arg2]) native "Int16Array_constructor_Ca llback";
13 static Int32Array I32(_arg0, [_arg1, _arg2]) native "Int32Array_constructor_Ca llback";
14 static Uint8Array U8(_arg0, [_arg1, _arg2]) native "Uint8Array_constructor_Cal lback";
15 static Uint16Array U16(_arg0, [_arg1, _arg2]) native "Uint16Array_constructor_ Callback";
16 static Uint32Array U32(_arg0, [_arg1, _arg2]) native "Uint32Array_constructor_ Callback";
17
18 static WebKitCSSMatrix createWebKitCSSMatrix([String spec = '']) native "WebKi tCSSMatrix_constructor_Callback";
19 static WebKitPoint createWebKitPoint(num x, num y) native "WebKitPoint_constru ctor_Callback";
20 static WebSocket createWebSocket(String url) native "WebSocket_constructor_Cal lback";
21 static XMLHttpRequest createXMLHttpRequest() native "XMLHttpRequest_constructo r_Callback";
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698