| Index: chrome/common/extensions/api/socket.idl
 | 
| diff --git a/chrome/common/extensions/api/socket.idl b/chrome/common/extensions/api/socket.idl
 | 
| index 5b76525352e0cf564682d8f25b2dcb06988b5acb..d4b156185960265f750cb3538e6ad51b1d3cd537 100644
 | 
| --- a/chrome/common/extensions/api/socket.idl
 | 
| +++ b/chrome/common/extensions/api/socket.idl
 | 
| @@ -27,6 +27,8 @@ namespace socket {
 | 
|  
 | 
|    callback ListenCallback = void (long result);
 | 
|  
 | 
| +  callback SecureCallback = void (long result);
 | 
| +
 | 
|    dictionary AcceptInfo {
 | 
|      long resultCode;
 | 
|      // The id of the accepted socket.
 | 
| @@ -107,6 +109,15 @@ namespace socket {
 | 
|      long prefixLength;
 | 
|    };
 | 
|  
 | 
| +  dictionary TLSVersionConstraints {
 | 
| +    DOMString? min;
 | 
| +    DOMString? max;
 | 
| +  };
 | 
| +
 | 
| +  dictionary SecureOptions {
 | 
| +    TLSVersionConstraints? tlsVersion;
 | 
| +  };
 | 
| +
 | 
|    callback RecvFromCallback = void (RecvFromInfo recvFromInfo);
 | 
|  
 | 
|    callback SendToCallback = void (WriteInfo writeInfo);
 | 
| @@ -332,6 +343,14 @@ namespace socket {
 | 
|      // |callback| : Called with an array of strings of the result.
 | 
|      static void getJoinedGroups(long socketId,
 | 
|                                  GetJoinedGroupsCallback callback);
 | 
| +
 | 
| +    // Start a TLS client connection over the socket.
 | 
| +    // |socketId| : The existing, connected socket to use.
 | 
| +    // |options| : Constraints and parameters for the TLS connection.
 | 
| +    // |callback| : Called when the connection attempt is complete.
 | 
| +    static void secure(long socketId,
 | 
| +                       optional SecureOptions options,
 | 
| +                       SecureCallback callback);
 | 
|    };
 | 
|  
 | 
|  };
 | 
| 
 |