diff options
author | toyoshim@chromium.org <toyoshim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-13 22:48:07 +0000 |
---|---|---|
committer | toyoshim@chromium.org <toyoshim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-13 22:48:07 +0000 |
commit | fade7dbc68d63c727ad9dabaaac168f407f31ce9 (patch) | |
tree | 745d605a72b5cc6c24bc54fb89b0abdc3101f45d /ppapi/api | |
parent | bb1e96746a4bc7a0857f530068a1adfa0438a757 (diff) | |
download | chromium_src-fade7dbc68d63c727ad9dabaaac168f407f31ce9.zip chromium_src-fade7dbc68d63c727ad9dabaaac168f407f31ce9.tar.gz chromium_src-fade7dbc68d63c727ad9dabaaac168f407f31ce9.tar.bz2 |
WebSocket Pepper API: Cleanup for more readability.
BUG=none
TEST=ui_tests
Review URL: http://codereview.chromium.org/9316055
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126490 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api')
-rw-r--r-- | ppapi/api/ppb_websocket.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/api/ppb_websocket.idl b/ppapi/api/ppb_websocket.idl index 95dd1ec..38a6470 100644 --- a/ppapi/api/ppb_websocket.idl +++ b/ppapi/api/ppb_websocket.idl @@ -11,7 +11,6 @@ label Chrome { M18 = 1.0 }; - /** * This enumeration contains the types representing the WebSocket ready state * and these states are based on the JavaScript WebSocket API specification. @@ -23,6 +22,7 @@ enum PP_WebSocketReadyState { * Ready state is queried on an invalid resource. */ PP_WEBSOCKETREADYSTATE_INVALID = -1, + /** * Ready state that the connection has not yet been established. */ |