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

Side by Side Diff: client/html/src/XMLHttpRequest.dart

Issue 9016026: Moves over remaining .dart code references to 'factory' in interface declartions to 'default' (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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
« no previous file with comments | « client/html/src/WheelEvent.dart ('k') | client/html/src/XMLHttpRequestProgressEvent.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 interface XMLHttpRequestEvents extends Events { 5 interface XMLHttpRequestEvents extends Events {
6 EventListenerList get abort(); 6 EventListenerList get abort();
7 EventListenerList get error(); 7 EventListenerList get error();
8 EventListenerList get load(); 8 EventListenerList get load();
9 EventListenerList get loadStart(); 9 EventListenerList get loadStart();
10 EventListenerList get progress(); 10 EventListenerList get progress();
11 EventListenerList get readyStateChange(); 11 EventListenerList get readyStateChange();
12 } 12 }
13 13
14 interface XMLHttpRequest extends EventTarget factory XMLHttpRequestWrappingImple mentation { 14 interface XMLHttpRequest extends EventTarget default XMLHttpRequestWrappingImple mentation {
15 static final int DONE = 4; 15 static final int DONE = 4;
16 16
17 static final int HEADERS_RECEIVED = 2; 17 static final int HEADERS_RECEIVED = 2;
18 18
19 static final int LOADING = 3; 19 static final int LOADING = 3;
20 20
21 static final int OPENED = 1; 21 static final int OPENED = 1;
22 22
23 static final int UNSENT = 0; 23 static final int UNSENT = 0;
24 24
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 void open(String method, String url, bool async, [String user, String password ]); 57 void open(String method, String url, bool async, [String user, String password ]);
58 58
59 void overrideMimeType(String mime); 59 void overrideMimeType(String mime);
60 60
61 void send([String data]); 61 void send([String data]);
62 62
63 void setRequestHeader(String header, String value); 63 void setRequestHeader(String header, String value);
64 64
65 XMLHttpRequestEvents get on(); 65 XMLHttpRequestEvents get on();
66 } 66 }
OLDNEW
« no previous file with comments | « client/html/src/WheelEvent.dart ('k') | client/html/src/XMLHttpRequestProgressEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698