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

Unified Diff: remoting/host/chromoting_host.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/host/chromium_port_allocator_factory.h ('k') | remoting/host/chromoting_host_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/chromoting_host.h
diff --git a/remoting/host/chromoting_host.h b/remoting/host/chromoting_host.h
index 814a1a3ff8a38e4f56381ced1dd08fd84c5699a9..2a01c0e0508fa5d58b38bd2831af07c6ae012d7d 100644
--- a/remoting/host/chromoting_host.h
+++ b/remoting/host/chromoting_host.h
@@ -90,8 +90,8 @@ class ChromotingHost : public base::NonThreadSafe,
void Start(const std::string& host_owner);
// HostStatusMonitor interface.
- virtual void AddStatusObserver(HostStatusObserver* observer) OVERRIDE;
- virtual void RemoveStatusObserver(HostStatusObserver* observer) OVERRIDE;
+ virtual void AddStatusObserver(HostStatusObserver* observer) override;
+ virtual void RemoveStatusObserver(HostStatusObserver* observer) override;
// Registers a host extension.
void AddExtension(scoped_ptr<HostExtension> extension);
@@ -120,21 +120,21 @@ class ChromotingHost : public base::NonThreadSafe,
////////////////////////////////////////////////////////////////////////////
// ClientSession::EventHandler implementation.
- virtual void OnSessionAuthenticating(ClientSession* client) OVERRIDE;
- virtual bool OnSessionAuthenticated(ClientSession* client) OVERRIDE;
- virtual void OnSessionChannelsConnected(ClientSession* client) OVERRIDE;
- virtual void OnSessionAuthenticationFailed(ClientSession* client) OVERRIDE;
- virtual void OnSessionClosed(ClientSession* session) OVERRIDE;
+ virtual void OnSessionAuthenticating(ClientSession* client) override;
+ virtual bool OnSessionAuthenticated(ClientSession* client) override;
+ virtual void OnSessionChannelsConnected(ClientSession* client) override;
+ virtual void OnSessionAuthenticationFailed(ClientSession* client) override;
+ virtual void OnSessionClosed(ClientSession* session) override;
virtual void OnSessionRouteChange(
ClientSession* session,
const std::string& channel_name,
- const protocol::TransportRoute& route) OVERRIDE;
+ const protocol::TransportRoute& route) override;
// SessionManager::Listener implementation.
- virtual void OnSessionManagerReady() OVERRIDE;
+ virtual void OnSessionManagerReady() override;
virtual void OnIncomingSession(
protocol::Session* session,
- protocol::SessionManager::IncomingSessionResponse* response) OVERRIDE;
+ protocol::SessionManager::IncomingSessionResponse* response) override;
// Gets the candidate configuration for the protocol.
const protocol::CandidateSessionConfig* protocol_config() const {
« no previous file with comments | « remoting/host/chromium_port_allocator_factory.h ('k') | remoting/host/chromoting_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698