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

Unified Diff: remoting/protocol/buffered_socket_writer.h

Issue 8601011: Add OVERRIDE to remoting/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « remoting/jingle_glue/xmpp_socket_adapter.h ('k') | remoting/protocol/channel_authenticator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/buffered_socket_writer.h
diff --git a/remoting/protocol/buffered_socket_writer.h b/remoting/protocol/buffered_socket_writer.h
index 5aa083f8ea96b9c0b4e2e758096a9a132655635e..762e0456f126df3f6251737192bdbd16484e26d4 100644
--- a/remoting/protocol/buffered_socket_writer.h
+++ b/remoting/protocol/buffered_socket_writer.h
@@ -110,9 +110,9 @@ class BufferedSocketWriter : public BufferedSocketWriterBase {
virtual ~BufferedSocketWriter();
protected:
- virtual void GetNextPacket_Locked(net::IOBuffer** buffer, int* size);
- virtual void AdvanceBufferPosition_Locked(int written);
- virtual void OnError_Locked(int result);
+ virtual void GetNextPacket_Locked(net::IOBuffer** buffer, int* size) OVERRIDE;
+ virtual void AdvanceBufferPosition_Locked(int written) OVERRIDE;
+ virtual void OnError_Locked(int result) OVERRIDE;
private:
scoped_refptr<net::DrainableIOBuffer> current_buf_;
@@ -124,9 +124,9 @@ class BufferedDatagramWriter : public BufferedSocketWriterBase {
virtual ~BufferedDatagramWriter();
protected:
- virtual void GetNextPacket_Locked(net::IOBuffer** buffer, int* size);
- virtual void AdvanceBufferPosition_Locked(int written);
- virtual void OnError_Locked(int result);
+ virtual void GetNextPacket_Locked(net::IOBuffer** buffer, int* size) OVERRIDE;
+ virtual void AdvanceBufferPosition_Locked(int written) OVERRIDE;
+ virtual void OnError_Locked(int result) OVERRIDE;
};
} // namespace protocol
« no previous file with comments | « remoting/jingle_glue/xmpp_socket_adapter.h ('k') | remoting/protocol/channel_authenticator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698