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

Unified Diff: media/cast/test/end2end_unittest.cc

Issue 623263003: replace OVERRIDE and FINAL with override and final in media/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « media/cast/test/cast_benchmarks.cc ('k') | media/cast/test/fake_receiver_time_offset_estimator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/test/end2end_unittest.cc
diff --git a/media/cast/test/end2end_unittest.cc b/media/cast/test/end2end_unittest.cc
index a80912a900afd3555fb16dd744b661018657deea..6c19be76e52939f6d79919b8a0e59575c1cec102 100644
--- a/media/cast/test/end2end_unittest.cc
+++ b/media/cast/test/end2end_unittest.cc
@@ -174,7 +174,7 @@ class LoopBackPacketPipe : public test::PacketPipe {
virtual ~LoopBackPacketPipe() {}
// PacketPipe implementations.
- virtual void Send(scoped_ptr<Packet> packet) OVERRIDE {
+ virtual void Send(scoped_ptr<Packet> packet) override {
packet_receiver_.Run(packet.Pass());
}
@@ -207,7 +207,7 @@ class LoopBackTransport : public PacketSender {
}
virtual bool SendPacket(PacketRef packet,
- const base::Closure& cb) OVERRIDE {
+ const base::Closure& cb) override {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
if (!send_packets_)
return true;
@@ -224,7 +224,7 @@ class LoopBackTransport : public PacketSender {
return true;
}
- virtual int64 GetBytesSent() OVERRIDE {
+ virtual int64 GetBytesSent() override {
return bytes_sent_;
}
@@ -638,7 +638,7 @@ class End2EndTest : public ::testing::Test {
&event_subscriber_sender_);
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
cast_sender_.reset();
cast_receiver_.reset();
task_runner_->RunTasks();
« no previous file with comments | « media/cast/test/cast_benchmarks.cc ('k') | media/cast/test/fake_receiver_time_offset_estimator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698