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

Unified Diff: Source/web/WebSocketImpl.h

Issue 843683005: Fix a bit of C++11 in web/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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/web/WebSocketImpl.h
diff --git a/Source/web/WebSocketImpl.h b/Source/web/WebSocketImpl.h
index 9318fd3b1043dd140c6d7ab85525a01872b4b346..55fcc26ce0043f1338bb8282a99a96338906119c 100644
--- a/Source/web/WebSocketImpl.h
+++ b/Source/web/WebSocketImpl.h
@@ -69,7 +69,7 @@ public:
// WebSocketChannelClient methods proxied by WebSocketChannelClientProxy.
void didConnect(const String& subprotocol, const String& extensions);
void didReceiveTextMessage(const String& payload);
- void didReceiveBinaryMessage(PassOwnPtr<Vector<char> > payload);
+ void didReceiveBinaryMessage(PassOwnPtr<Vector<char>> payload);
void didError();
void didConsumeBufferedAmount(unsigned long consumed);
void didStartClosingHandshake();

Powered by Google App Engine
This is Rietveld 408576698