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

Unified Diff: Source/modules/websockets/WebSocketChannelClient.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/WebSocketChannelClient.h
diff --git a/Source/modules/websockets/WebSocketChannelClient.h b/Source/modules/websockets/WebSocketChannelClient.h
index 7ba7413dd76d1d4e8bb39aead90daf1f76fbc6a6..51df39fa9996938d0d349f991f88776de85428ba 100644
--- a/Source/modules/websockets/WebSocketChannelClient.h
+++ b/Source/modules/websockets/WebSocketChannelClient.h
@@ -44,7 +44,7 @@ public:
virtual ~WebSocketChannelClient() { }
virtual void didConnect(const String& subprotocol, const String& extensions) { }
virtual void didReceiveTextMessage(const String&) { }
- virtual void didReceiveBinaryMessage(PassOwnPtr<Vector<char> >) { }
+ virtual void didReceiveBinaryMessage(PassOwnPtr<Vector<char>>) { }
virtual void didError() { }
virtual void didConsumeBufferedAmount(uint64_t consumed) { }
virtual void didStartClosingHandshake() { }

Powered by Google App Engine
This is Rietveld 408576698