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

Side by Side Diff: extensions/common/api/socket.idl

Issue 2083743002: Adding TLS 1.3 constants (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing default versions. Created 4 years, 5 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Use the <code>chrome.socket</code> API to send and receive data over the 5 // Use the <code>chrome.socket</code> API to send and receive data over the
6 // network using TCP and UDP connections. <b>Note:</b> Starting with Chrome 33, 6 // network using TCP and UDP connections. <b>Note:</b> Starting with Chrome 33,
7 // this API is deprecated in favor of the $(ref:sockets.udp), $(ref:sockets.tcp) and 7 // this API is deprecated in favor of the $(ref:sockets.udp), $(ref:sockets.tcp) and
8 // $(ref:sockets.tcpServer) APIs. 8 // $(ref:sockets.tcpServer) APIs.
9 namespace socket { 9 namespace socket {
10 enum SocketType { 10 enum SocketType {
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 106
107 // The available IPv4/6 address. 107 // The available IPv4/6 address.
108 DOMString address; 108 DOMString address;
109 109
110 // The prefix length 110 // The prefix length
111 long prefixLength; 111 long prefixLength;
112 }; 112 };
113 113
114 dictionary TLSVersionConstraints { 114 dictionary TLSVersionConstraints {
115 // The minimum and maximum acceptable versions of TLS. These will 115 // The minimum and maximum acceptable versions of TLS. These will
116 // be <code>tls1</code>, <code>tls1.1</code>, or <code>tls1.2</code>. 116 // be <code>tls1</code>, <code>tls1.1</code>, <code>tls1.2</code>,
117 // or <code>tls1.3</code>.
davidben 2016/07/18 09:46:40 Ditto re not wanting to expose this
svaldez 2016/07/18 10:04:01 Done.
117 DOMString? min; 118 DOMString? min;
118 DOMString? max; 119 DOMString? max;
119 }; 120 };
120 121
121 dictionary SecureOptions { 122 dictionary SecureOptions {
122 TLSVersionConstraints? tlsVersion; 123 TLSVersionConstraints? tlsVersion;
123 }; 124 };
124 125
125 callback RecvFromCallback = void (RecvFromInfo recvFromInfo); 126 callback RecvFromCallback = void (RecvFromInfo recvFromInfo);
126 127
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 // Start a TLS client connection over a connected TCP client socket. 352 // Start a TLS client connection over a connected TCP client socket.
352 // |socketId| : The connected socket to use. 353 // |socketId| : The connected socket to use.
353 // |options| : Constraints and parameters for the TLS connection. 354 // |options| : Constraints and parameters for the TLS connection.
354 // |callback| : Called when the TLS connection attempt is complete. 355 // |callback| : Called when the TLS connection attempt is complete.
355 static void secure(long socketId, 356 static void secure(long socketId,
356 optional SecureOptions options, 357 optional SecureOptions options,
357 SecureCallback callback); 358 SecureCallback callback);
358 }; 359 };
359 360
360 }; 361 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698