| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 | 67 |
| 68 // Called when the handle is closed. | 68 // Called when the handle is closed. |
| 69 // |handle| becomes unavailable once this notification arrives. | 69 // |handle| becomes unavailable once this notification arrives. |
| 70 virtual void didClose(WebSocketHandle* /* handle */, bool wasClean, unsigned
short code, const WebString& reason) = 0; | 70 virtual void didClose(WebSocketHandle* /* handle */, bool wasClean, unsigned
short code, const WebString& reason) = 0; |
| 71 | 71 |
| 72 virtual void didReceiveFlowControl(WebSocketHandle*, int64_t quota) = 0; | 72 virtual void didReceiveFlowControl(WebSocketHandle*, int64_t quota) = 0; |
| 73 | 73 |
| 74 // Called when the browser receives a Close frame from the remote | 74 // Called when the browser receives a Close frame from the remote |
| 75 // server. Not called when the renderer initiates the closing handshake. | 75 // server. Not called when the renderer initiates the closing handshake. |
| 76 virtual void didStartClosingHandshake(WebSocketHandle*) = 0; | 76 virtual void didStartClosingHandshake(WebSocketHandle*) = 0; |
| 77 |
| 78 // Called when a browser-side Blob send completes. |
| 79 virtual void didCompleteSendingBlob(WebSocketHandle*) = 0; |
| 77 }; | 80 }; |
| 78 | 81 |
| 79 } // namespace blink | 82 } // namespace blink |
| 80 | 83 |
| 81 #endif // WebSocketHandleClient_h | 84 #endif // WebSocketHandleClient_h |
| OLD | NEW |