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

Unified Diff: Source/modules/websockets/DocumentWebSocketChannel.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/DocumentWebSocketChannel.h
diff --git a/Source/modules/websockets/DocumentWebSocketChannel.h b/Source/modules/websockets/DocumentWebSocketChannel.h
index 444c05d2479003b54d290df35458fce0d713d3a7..4b0a3eef15c010ea7fb88c6c278b3710b0d87ddc 100644
--- a/Source/modules/websockets/DocumentWebSocketChannel.h
+++ b/Source/modules/websockets/DocumentWebSocketChannel.h
@@ -78,7 +78,7 @@ public:
virtual void send(const String& message) override;
virtual void send(const DOMArrayBuffer&, unsigned byteOffset, unsigned byteLength) override;
virtual void send(PassRefPtr<BlobDataHandle>) override;
- virtual void send(PassOwnPtr<Vector<char> > data) override;
+ virtual void send(PassOwnPtr<Vector<char>> data) override;
// Start closing handshake. Use the CloseEventCodeNotSpecified for the code
// argument to omit payload.
virtual void close(int code, const String& reason) override;
@@ -100,7 +100,7 @@ private:
explicit Message(const String&);
explicit Message(PassRefPtr<BlobDataHandle>);
explicit Message(PassRefPtr<DOMArrayBuffer>);
- explicit Message(PassOwnPtr<Vector<char> >);
+ explicit Message(PassOwnPtr<Vector<char>>);
Message(unsigned short code, const String& reason);
MessageType type;
@@ -108,7 +108,7 @@ private:
CString text;
RefPtr<BlobDataHandle> blobDataHandle;
RefPtr<DOMArrayBuffer> arrayBuffer;
- OwnPtr<Vector<char> > vectorData;
+ OwnPtr<Vector<char>> vectorData;
unsigned short code;
String reason;
};
@@ -153,7 +153,7 @@ private:
// m_identifier > 0 means calling scriptContextExecution() returns a Document.
unsigned long m_identifier;
Member<BlobLoader> m_blobLoader;
- Deque<OwnPtr<Message> > m_messages;
+ Deque<OwnPtr<Message>> m_messages;
Vector<char> m_receivingMessageData;
bool m_receivingMessageTypeIsText;

Powered by Google App Engine
This is Rietveld 408576698