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

Side by Side Diff: third_party/WebKit/public/platform/modules/websockets/WebSocketHandleClient.h

Issue 1574213003: [ABANDONED] Use new Websocket SendBlob IPC from renderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@websocket_blob_send_sender
Patch Set: Comment that bufferedAmount may be temporarily too low. Created 4 years, 10 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
« no previous file with comments | « third_party/WebKit/public/platform/modules/websockets/WebSocketHandle.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/public/platform/modules/websockets/WebSocketHandle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698