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

Side by Side Diff: modules/websockets/WebSocket.idl

Issue 126143003: Update IDL to Chrome 32 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Add new files Created 6 years, 11 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
« no previous file with comments | « modules/webmidi/NavigatorWebMIDI.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010, 2011 Apple Inc. All Rights Reserved. 3 * Copyright (C) 2010, 2011 Apple Inc. All Rights Reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 18 matching lines...) Expand all
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32 [ 32 [
33 GlobalContext=Window&WorkerGlobalScope, 33 GlobalContext=Window&WorkerGlobalScope,
34 ActiveDOMObject, 34 ActiveDOMObject,
35 Constructor(DOMString url), 35 Constructor(DOMString url),
36 Constructor(DOMString url, sequence<DOMString> protocols), 36 Constructor(DOMString url, sequence<DOMString> protocols),
37 Constructor(DOMString url, DOMString protocol), 37 Constructor(DOMString url, DOMString protocol),
38 ConstructorRaisesException, 38 ConstructorRaisesException,
39 ConstructorCallWith=ScriptExecutionContext 39 ConstructorCallWith=ExecutionContext
40 ] interface WebSocket : EventTarget { 40 ] interface WebSocket : EventTarget {
41 readonly attribute DOMString URL; // Lowercased .url is the one in the spec, but leaving .URL for compatibility reasons. 41 readonly attribute DOMString URL; // Lowercased .url is the one in the spec, but leaving .URL for compatibility reasons.
42 readonly attribute DOMString url; 42 readonly attribute DOMString url;
43 43
44 // ready state 44 // ready state
45 const unsigned short CONNECTING = 0; 45 const unsigned short CONNECTING = 0;
46 const unsigned short OPEN = 1; 46 const unsigned short OPEN = 1;
47 const unsigned short CLOSING = 2; 47 const unsigned short CLOSING = 2;
48 const unsigned short CLOSED = 3; 48 const unsigned short CLOSED = 3;
49 readonly attribute unsigned short readyState; 49 readonly attribute unsigned short readyState;
(...skipping 11 matching lines...) Expand all
61 61
62 attribute DOMString binaryType; 62 attribute DOMString binaryType;
63 63
64 [RaisesException] void send(ArrayBuffer data); 64 [RaisesException] void send(ArrayBuffer data);
65 [RaisesException] void send(ArrayBufferView data); 65 [RaisesException] void send(ArrayBufferView data);
66 [RaisesException] void send(Blob data); 66 [RaisesException] void send(Blob data);
67 [RaisesException] void send(DOMString data); 67 [RaisesException] void send(DOMString data);
68 68
69 [RaisesException] void close([Clamp] optional unsigned short code, optional DOMString reason); 69 [RaisesException] void close([Clamp] optional unsigned short code, optional DOMString reason);
70 }; 70 };
OLDNEW
« no previous file with comments | « modules/webmidi/NavigatorWebMIDI.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698