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

Unified Diff: Source/modules/websockets/WorkerWebSocketChannel.h

Issue 711763002: bindings: Transition from ArrayBuffer to DOMArrayBuffer, part 2 (2nd round) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixes Win x64 build. Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/websockets/WebSocketChannel.h ('k') | Source/modules/websockets/WorkerWebSocketChannel.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/websockets/WorkerWebSocketChannel.h
diff --git a/Source/modules/websockets/WorkerWebSocketChannel.h b/Source/modules/websockets/WorkerWebSocketChannel.h
index a304b1326641f9b1e88682a096b74b66859cfd62..6702e0d16a9a0e4902650dddd5bb0e7d7f0402db 100644
--- a/Source/modules/websockets/WorkerWebSocketChannel.h
+++ b/Source/modules/websockets/WorkerWebSocketChannel.h
@@ -64,7 +64,7 @@ public:
// WebSocketChannel functions.
virtual bool connect(const KURL&, const String& protocol) override;
virtual void send(const String& message) override;
- virtual void send(const ArrayBuffer&, unsigned byteOffset, unsigned byteLength) override;
+ virtual void send(const DOMArrayBuffer&, unsigned byteOffset, unsigned byteLength) override;
virtual void send(PassRefPtr<BlobDataHandle>) override;
virtual void send(PassOwnPtr<Vector<char> >) override
{
@@ -134,7 +134,7 @@ public:
void initialize(const String& sourceURLAtConnection, unsigned lineNumberAtConnection);
bool connect(const KURL&, const String& protocol);
void send(const String& message);
- void send(const ArrayBuffer&, unsigned byteOffset, unsigned byteLength);
+ void send(const DOMArrayBuffer&, unsigned byteOffset, unsigned byteLength);
void send(PassRefPtr<BlobDataHandle>);
unsigned long bufferedAmount();
void close(int code, const String& reason);
« no previous file with comments | « Source/modules/websockets/WebSocketChannel.h ('k') | Source/modules/websockets/WorkerWebSocketChannel.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698