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

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

Issue 864533002: Fix template angle bracket syntax in modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: Source/modules/websockets/WorkerWebSocketChannel.h
diff --git a/Source/modules/websockets/WorkerWebSocketChannel.h b/Source/modules/websockets/WorkerWebSocketChannel.h
index fb82e661837e0af73994a2b66e1654bc12d27748..c97ca2d84928ec7a86d78cf2d6a0d0e32e70276c 100644
--- a/Source/modules/websockets/WorkerWebSocketChannel.h
+++ b/Source/modules/websockets/WorkerWebSocketChannel.h
@@ -67,7 +67,7 @@ public:
virtual void send(const String& message) override;
virtual void send(const DOMArrayBuffer&, unsigned byteOffset, unsigned byteLength) override;
virtual void send(PassRefPtr<BlobDataHandle>) override;
- virtual void send(PassOwnPtr<Vector<char> >) override
+ virtual void send(PassOwnPtr<Vector<char>>) override
{
ASSERT_NOT_REACHED();
}
@@ -95,7 +95,7 @@ public:
void connect(const KURL&, const String& protocol);
void send(const String& message);
- void sendArrayBuffer(PassOwnPtr<Vector<char> >);
+ void sendArrayBuffer(PassOwnPtr<Vector<char>>);
void sendBlob(PassRefPtr<BlobDataHandle>);
void close(int code, const String& reason);
void fail(const String& reason, MessageLevel, const String& sourceURL, unsigned lineNumber);
@@ -106,7 +106,7 @@ public:
// WebSocketChannelClient functions.
virtual void didConnect(const String& subprotocol, const String& extensions) override;
virtual void didReceiveTextMessage(const String& payload) override;
- virtual void didReceiveBinaryMessage(PassOwnPtr<Vector<char> >) override;
+ virtual void didReceiveBinaryMessage(PassOwnPtr<Vector<char>>) override;
virtual void didConsumeBufferedAmount(uint64_t) override;
virtual void didStartClosingHandshake() override;
virtual void didClose(ClosingHandshakeCompletionStatus, unsigned short code, const String& reason) override;

Powered by Google App Engine
This is Rietveld 408576698