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

Unified Diff: remoting/protocol/fake_session.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/fake_datagram_socket.h ('k') | remoting/protocol/fake_stream_socket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/fake_session.h
diff --git a/remoting/protocol/fake_session.h b/remoting/protocol/fake_session.h
index b04cdd8359acc1c0df84577ff4ce09b3205e6ab7..5148688efa2e059416cfad24b041d0326fd8ca69 100644
--- a/remoting/protocol/fake_session.h
+++ b/remoting/protocol/fake_session.h
@@ -34,15 +34,15 @@ class FakeSession : public Session {
FakeStreamChannelFactory& fake_channel_factory() { return channel_factory_; }
// Session interface.
- virtual void SetEventHandler(EventHandler* event_handler) OVERRIDE;
- virtual ErrorCode error() OVERRIDE;
- virtual const std::string& jid() OVERRIDE;
- virtual const CandidateSessionConfig* candidate_config() OVERRIDE;
- virtual const SessionConfig& config() OVERRIDE;
- virtual void set_config(const SessionConfig& config) OVERRIDE;
- virtual StreamChannelFactory* GetTransportChannelFactory() OVERRIDE;
- virtual StreamChannelFactory* GetMultiplexedChannelFactory() OVERRIDE;
- virtual void Close() OVERRIDE;
+ virtual void SetEventHandler(EventHandler* event_handler) override;
+ virtual ErrorCode error() override;
+ virtual const std::string& jid() override;
+ virtual const CandidateSessionConfig* candidate_config() override;
+ virtual const SessionConfig& config() override;
+ virtual void set_config(const SessionConfig& config) override;
+ virtual StreamChannelFactory* GetTransportChannelFactory() override;
+ virtual StreamChannelFactory* GetMultiplexedChannelFactory() override;
+ virtual void Close() override;
public:
EventHandler* event_handler_;
« no previous file with comments | « remoting/protocol/fake_datagram_socket.h ('k') | remoting/protocol/fake_stream_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698