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

Unified Diff: remoting/host/cast_extension_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/host/cast_extension.h ('k') | remoting/host/cast_extension_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/cast_extension_session.h
diff --git a/remoting/host/cast_extension_session.h b/remoting/host/cast_extension_session.h
index 83e477a1e8f76643598c47de3d214c5ab36f2f0e..fe27280b284206a33a3e533a77f79d9fbab0983b 100644
--- a/remoting/host/cast_extension_session.h
+++ b/remoting/host/cast_extension_session.h
@@ -62,31 +62,31 @@ class CastExtensionSession : public HostExtensionSession,
// HostExtensionSession interface.
virtual void OnCreateVideoCapturer(
- scoped_ptr<webrtc::DesktopCapturer>* capturer) OVERRIDE;
- virtual bool ModifiesVideoPipeline() const OVERRIDE;
+ scoped_ptr<webrtc::DesktopCapturer>* capturer) override;
+ virtual bool ModifiesVideoPipeline() const override;
virtual bool OnExtensionMessage(
ClientSessionControl* client_session_control,
protocol::ClientStub* client_stub,
- const protocol::ExtensionMessage& message) OVERRIDE;
+ const protocol::ExtensionMessage& message) override;
// webrtc::PeerConnectionObserver interface.
- virtual void OnError() OVERRIDE;
+ virtual void OnError() override;
virtual void OnSignalingChange(
- webrtc::PeerConnectionInterface::SignalingState new_state) OVERRIDE;
+ webrtc::PeerConnectionInterface::SignalingState new_state) override;
virtual void OnStateChange(
- webrtc::PeerConnectionObserver::StateType state_changed) OVERRIDE;
- virtual void OnAddStream(webrtc::MediaStreamInterface* stream) OVERRIDE;
- virtual void OnRemoveStream(webrtc::MediaStreamInterface* stream) OVERRIDE;
+ webrtc::PeerConnectionObserver::StateType state_changed) override;
+ virtual void OnAddStream(webrtc::MediaStreamInterface* stream) override;
+ virtual void OnRemoveStream(webrtc::MediaStreamInterface* stream) override;
virtual void OnDataChannel(
- webrtc::DataChannelInterface* data_channel) OVERRIDE;
- virtual void OnRenegotiationNeeded() OVERRIDE;
+ webrtc::DataChannelInterface* data_channel) override;
+ virtual void OnRenegotiationNeeded() override;
virtual void OnIceConnectionChange(
- webrtc::PeerConnectionInterface::IceConnectionState new_state) OVERRIDE;
+ webrtc::PeerConnectionInterface::IceConnectionState new_state) override;
virtual void OnIceGatheringChange(
- webrtc::PeerConnectionInterface::IceGatheringState new_state) OVERRIDE;
+ webrtc::PeerConnectionInterface::IceGatheringState new_state) override;
virtual void OnIceCandidate(
- const webrtc::IceCandidateInterface* candidate) OVERRIDE;
- virtual void OnIceComplete() OVERRIDE;
+ const webrtc::IceCandidateInterface* candidate) override;
+ virtual void OnIceComplete() override;
private:
CastExtensionSession(
« no previous file with comments | « remoting/host/cast_extension.h ('k') | remoting/host/cast_extension_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698