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

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

Issue 434133002: Support WebIDL's ExtendedAttributeIdentList in the Blink parser (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 4 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 | « Source/modules/serviceworkers/ServiceWorkerGlobalScope.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 23 matching lines...) Expand all
34 34
35 // FIXME: use BinaryType in binaryType 35 // FIXME: use BinaryType in binaryType
36 enum BinaryType { "blob", "arraybuffer" }; 36 enum BinaryType { "blob", "arraybuffer" };
37 37
38 [ 38 [
39 ActiveDOMObject, 39 ActiveDOMObject,
40 // FIXME: should be optional union type http://crbug.com/240176 40 // FIXME: should be optional union type http://crbug.com/240176
41 Constructor(DOMString url, optional DOMString protocol), 41 Constructor(DOMString url, optional DOMString protocol),
42 Constructor(DOMString url, sequence<DOMString> protocols), 42 Constructor(DOMString url, sequence<DOMString> protocols),
43 ConstructorCallWith=ExecutionContext, 43 ConstructorCallWith=ExecutionContext,
44 Exposed=Window&Worker, 44 Exposed=(Window,Worker),
45 RaisesException=Constructor, 45 RaisesException=Constructor,
46 GarbageCollected, 46 GarbageCollected,
47 ImplementedAs=DOMWebSocket, 47 ImplementedAs=DOMWebSocket,
48 ] interface WebSocket : EventTarget { 48 ] interface WebSocket : EventTarget {
49 [DeprecateAs=WebSocketURL] readonly attribute DOMString URL; // Lowercased . url is the one in the spec, but leaving .URL for compatibility reasons. 49 [DeprecateAs=WebSocketURL] readonly attribute DOMString URL; // Lowercased . url is the one in the spec, but leaving .URL for compatibility reasons.
50 readonly attribute DOMString url; 50 readonly attribute DOMString url;
51 51
52 // ready state 52 // ready state
53 const unsigned short CONNECTING = 0; 53 const unsigned short CONNECTING = 0;
54 const unsigned short OPEN = 1; 54 const unsigned short OPEN = 1;
(...skipping 11 matching lines...) Expand all
66 [RaisesException] void close([Clamp] optional unsigned short code, optional DOMString reason); 66 [RaisesException] void close([Clamp] optional unsigned short code, optional DOMString reason);
67 67
68 // messaging 68 // messaging
69 attribute EventHandler onmessage; 69 attribute EventHandler onmessage;
70 attribute DOMString binaryType; 70 attribute DOMString binaryType;
71 [RaisesException] void send(DOMString data); 71 [RaisesException] void send(DOMString data);
72 [RaisesException] void send(Blob data); 72 [RaisesException] void send(Blob data);
73 [RaisesException] void send(ArrayBuffer data); 73 [RaisesException] void send(ArrayBuffer data);
74 [RaisesException] void send(ArrayBufferView data); 74 [RaisesException] void send(ArrayBufferView data);
75 }; 75 };
OLDNEW
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerGlobalScope.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698