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

Unified Diff: Source/web/WebSocketChannelClientProxy.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/WebSocketChannelClientProxy.h
diff --git a/Source/web/WebSocketChannelClientProxy.h b/Source/web/WebSocketChannelClientProxy.h
index c8de64fd59d33bc7ea9bab0192b4eace47828df6..8878c199a4fd5af67785dc8353b2ce8c68a4bced 100644
--- a/Source/web/WebSocketChannelClientProxy.h
+++ b/Source/web/WebSocketChannelClientProxy.h
@@ -36,7 +36,7 @@ public:
{
m_impl->didReceiveTextMessage(payload);
}
- virtual void didReceiveBinaryMessage(PassOwnPtr<Vector<char> > payload) override
+ virtual void didReceiveBinaryMessage(PassOwnPtr<Vector<char>> payload) override
{
m_impl->didReceiveBinaryMessage(payload);
}

Powered by Google App Engine
This is Rietveld 408576698