Index: ppapi/api/ppb_tcp_socket.idl |
diff --git a/ppapi/api/ppb_tcp_socket.idl b/ppapi/api/ppb_tcp_socket.idl |
index 543cd3051916be4589587912ae81688ff9e6870c..e29cac12b02ee30a241c6f0395c3c90771538ae3 100644 |
--- a/ppapi/api/ppb_tcp_socket.idl |
+++ b/ppapi/api/ppb_tcp_socket.idl |
@@ -20,14 +20,12 @@ enum PP_TCPSocket_Option { |
/** |
* Disables coalescing of small writes to make TCP segments, and instead |
* delivers data immediately. Value's type is <code>PP_VARTYPE_BOOL</code>. |
- * This option can only be set after a successful <code>Connect()</code> call. |
*/ |
PP_TCPSOCKET_OPTION_NO_DELAY = 0, |
/** |
* Specifies the total per-socket buffer space reserved for sends. Value's |
* type should be <code>PP_VARTYPE_INT32</code>. |
- * This option can only be set after a successful <code>Connect()</code> call. |
* |
* Note: This is only treated as a hint for the browser to set the buffer |
* size. Even if <code>SetOption()</code> succeeds, the browser doesn't |
@@ -38,7 +36,6 @@ enum PP_TCPSocket_Option { |
/** |
* Specifies the total per-socket buffer space reserved for receives. Value's |
* type should be <code>PP_VARTYPE_INT32</code>. |
- * This option can only be set after a successful <code>Connect()</code> call. |
* |
* Note: This is only treated as a hint for the browser to set the buffer |
* size. Even if <code>SetOption()</code> succeeds, the browser doesn't |