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

Side by Side Diff: third_party/WebKit/public/platform/modules/websockets/WebSocketHandle.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
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 enum MessageType { 52 enum MessageType {
53 MessageTypeContinuation, 53 MessageTypeContinuation,
54 MessageTypeText, 54 MessageTypeText,
55 MessageTypeBinary, 55 MessageTypeBinary,
56 }; 56 };
57 57
58 virtual ~WebSocketHandle() { } 58 virtual ~WebSocketHandle() { }
59 59
60 virtual void connect(const WebURL&, const WebVector<WebString>& protocols, c onst WebSecurityOrigin&, WebSocketHandleClient*) = 0; 60 virtual void connect(const WebURL&, const WebVector<WebString>& protocols, c onst WebSecurityOrigin&, WebSocketHandleClient*) = 0;
61 virtual void send(bool fin, MessageType, const char* data, size_t /* size */ ) = 0; 61 virtual void send(bool fin, MessageType, const char* data, size_t /* size */ ) = 0;
62 virtual void sendBlob(const WebString& uuid, uint64_t expectedSize) = 0;
62 virtual void flowControl(int64_t quota) = 0; 63 virtual void flowControl(int64_t quota) = 0;
63 virtual void close(unsigned short code, const WebString& reason) = 0; 64 virtual void close(unsigned short code, const WebString& reason) = 0;
64 }; 65 };
65 66
66 } // namespace blink 67 } // namespace blink
67 68
68 #endif // WebSocketHandle_h 69 #endif // WebSocketHandle_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698