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

Unified Diff: remoting/protocol/buffered_socket_writer.h

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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
« no previous file with comments | « remoting/protocol/authenticator_test_base.h ('k') | remoting/protocol/buffered_socket_writer_unittest.cc » ('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 535decb103c28678660b9f41285e6bef3ab71ad6..d74cc82e678fc37687afba0b2c96938e862dab33 100644
--- a/remoting/protocol/buffered_socket_writer.h
+++ b/remoting/protocol/buffered_socket_writer.h
@@ -107,9 +107,9 @@ class BufferedSocketWriter : public BufferedSocketWriterBase {
virtual ~BufferedSocketWriter();
protected:
- virtual void GetNextPacket(net::IOBuffer** buffer, int* size) OVERRIDE;
- virtual base::Closure AdvanceBufferPosition(int written) OVERRIDE;
- virtual void OnError(int result) OVERRIDE;
+ virtual void GetNextPacket(net::IOBuffer** buffer, int* size) override;
+ virtual base::Closure AdvanceBufferPosition(int written) override;
+ virtual void OnError(int result) override;
private:
scoped_refptr<net::DrainableIOBuffer> current_buf_;
@@ -121,9 +121,9 @@ class BufferedDatagramWriter : public BufferedSocketWriterBase {
virtual ~BufferedDatagramWriter();
protected:
- virtual void GetNextPacket(net::IOBuffer** buffer, int* size) OVERRIDE;
- virtual base::Closure AdvanceBufferPosition(int written) OVERRIDE;
- virtual void OnError(int result) OVERRIDE;
+ virtual void GetNextPacket(net::IOBuffer** buffer, int* size) override;
+ virtual base::Closure AdvanceBufferPosition(int written) override;
+ virtual void OnError(int result) override;
};
} // namespace protocol
« no previous file with comments | « remoting/protocol/authenticator_test_base.h ('k') | remoting/protocol/buffered_socket_writer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698