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

Unified Diff: remoting/host/cast_extension_session.cc

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_session.h ('k') | remoting/host/cast_video_capturer_adapter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/cast_extension_session.cc
diff --git a/remoting/host/cast_extension_session.cc b/remoting/host/cast_extension_session.cc
index 76baa85f9507a32badfa8438a2d5c054422dfb65..1976cda88476a5314bc39f3fb8b5901ea8c9dc4c 100644
--- a/remoting/host/cast_extension_session.cc
+++ b/remoting/host/cast_extension_session.cc
@@ -71,10 +71,10 @@ class CastSetSessionDescriptionObserver
static CastSetSessionDescriptionObserver* Create() {
return new rtc::RefCountedObject<CastSetSessionDescriptionObserver>();
}
- virtual void OnSuccess() OVERRIDE {
+ virtual void OnSuccess() override {
VLOG(1) << "Setting session description succeeded.";
}
- virtual void OnFailure(const std::string& error) OVERRIDE {
+ virtual void OnFailure(const std::string& error) override {
LOG(ERROR) << "Setting session description failed: " << error;
}
@@ -95,7 +95,7 @@ class CastCreateSessionDescriptionObserver
return new rtc::RefCountedObject<CastCreateSessionDescriptionObserver>(
session);
}
- virtual void OnSuccess(webrtc::SessionDescriptionInterface* desc) OVERRIDE {
+ virtual void OnSuccess(webrtc::SessionDescriptionInterface* desc) override {
if (cast_extension_session_ == NULL) {
LOG(ERROR)
<< "No CastExtensionSession. Creating session description succeeded.";
@@ -103,7 +103,7 @@ class CastCreateSessionDescriptionObserver
}
cast_extension_session_->OnCreateSessionDescription(desc);
}
- virtual void OnFailure(const std::string& error) OVERRIDE {
+ virtual void OnFailure(const std::string& error) override {
if (cast_extension_session_ == NULL) {
LOG(ERROR)
<< "No CastExtensionSession. Creating session description failed.";
@@ -135,7 +135,7 @@ class CastStatsObserver : public webrtc::StatsObserver {
}
virtual void OnComplete(
- const std::vector<webrtc::StatsReport>& reports) OVERRIDE {
+ const std::vector<webrtc::StatsReport>& reports) override {
typedef webrtc::StatsReport::Values::iterator ValuesIterator;
VLOG(1) << "Received " << reports.size() << " new StatsReports.";
« no previous file with comments | « remoting/host/cast_extension_session.h ('k') | remoting/host/cast_video_capturer_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698