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

Unified Diff: Source/modules/websockets/DOMWebSocketTest.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/DOMWebSocketTest.cpp
diff --git a/Source/modules/websockets/DOMWebSocketTest.cpp b/Source/modules/websockets/DOMWebSocketTest.cpp
index a79fa2f3e95220e6e8711ccc2a5f81b182bce3a2..e72c303ad2bcc813650f245d2c2974fef14e4fdb 100644
--- a/Source/modules/websockets/DOMWebSocketTest.cpp
+++ b/Source/modules/websockets/DOMWebSocketTest.cpp
@@ -31,7 +31,7 @@ namespace blink {
namespace {
-typedef testing::StrictMock<testing::MockFunction<void(int)> > Checkpoint; // NOLINT
+typedef testing::StrictMock<testing::MockFunction<void(int)>> Checkpoint; // NOLINT
class MockWebSocketChannel : public WebSocketChannel {
public:
@@ -48,7 +48,7 @@ public:
MOCK_METHOD1(send, void(const String&));
MOCK_METHOD3(send, void(const DOMArrayBuffer&, unsigned, unsigned));
MOCK_METHOD1(send, void(PassRefPtr<BlobDataHandle>));
- MOCK_METHOD1(send, void(PassOwnPtr<Vector<char> >));
+ MOCK_METHOD1(send, void(PassOwnPtr<Vector<char>>));
MOCK_CONST_METHOD0(bufferedAmount, unsigned());
MOCK_METHOD2(close, void(int, const String&));
MOCK_METHOD4(fail, void(const String&, MessageLevel, const String&, unsigned));

Powered by Google App Engine
This is Rietveld 408576698