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

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

Issue 422743002: Deprecate EventSource.URL and WebSocket.URL (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/core/page/EventSource.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 28 matching lines...) Expand all
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 WillBeGarbageCollected, 46 WillBeGarbageCollected,
47 ImplementedAs=DOMWebSocket, 47 ImplementedAs=DOMWebSocket,
48 ] interface WebSocket : EventTarget { 48 ] interface WebSocket : EventTarget {
49 [MeasureAs=WebSocketURL] readonly attribute DOMString URL; // Lowercased .ur l 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;
55 const unsigned short CLOSING = 2; 55 const unsigned short CLOSING = 2;
56 const unsigned short CLOSED = 3; 56 const unsigned short CLOSED = 3;
57 readonly attribute unsigned short readyState; 57 readonly attribute unsigned short readyState;
58 readonly attribute unsigned long bufferedAmount; 58 readonly attribute unsigned long bufferedAmount;
59 59
60 // networking 60 // networking
61 attribute EventHandler onopen; 61 attribute EventHandler onopen;
62 attribute EventHandler onerror; 62 attribute EventHandler onerror;
63 attribute EventHandler onclose; 63 attribute EventHandler onclose;
64 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString extension s; 64 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString extension s;
65 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString protocol; 65 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString protocol;
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/core/page/EventSource.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698