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

Unified Diff: Source/modules/websockets/DocumentWebSocketChannelTest.cpp

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/DocumentWebSocketChannelTest.cpp
diff --git a/Source/modules/websockets/DocumentWebSocketChannelTest.cpp b/Source/modules/websockets/DocumentWebSocketChannelTest.cpp
index 4b4cb078dfcd5414395898026c7162ad74fa07fd..57bb1875ac5d4460941bd34041e9efc8abd3c229 100644
--- a/Source/modules/websockets/DocumentWebSocketChannelTest.cpp
+++ b/Source/modules/websockets/DocumentWebSocketChannelTest.cpp
@@ -38,7 +38,7 @@ namespace blink {
namespace {
-typedef testing::StrictMock< testing::MockFunction<void(int)> > Checkpoint;
+typedef testing::StrictMock< testing::MockFunction<void(int)>> Checkpoint;
class MockWebSocketChannelClient : public GarbageCollectedFinalized<MockWebSocketChannelClient>, public WebSocketChannelClient {
USING_GARBAGE_COLLECTED_MIXIN(MockWebSocketChannelClient);
@@ -54,7 +54,7 @@ public:
MOCK_METHOD2(didConnect, void(const String&, const String&));
MOCK_METHOD1(didReceiveTextMessage, void(const String&));
- virtual void didReceiveBinaryMessage(PassOwnPtr<Vector<char> > payload) override
+ virtual void didReceiveBinaryMessage(PassOwnPtr<Vector<char>> payload) override
{
didReceiveBinaryMessageMock(*payload);
}

Powered by Google App Engine
This is Rietveld 408576698