| Index: media/cast/test/utility/tap_proxy.cc
|
| diff --git a/media/cast/test/utility/tap_proxy.cc b/media/cast/test/utility/tap_proxy.cc
|
| index 7827bf976ff51963f4fca941e9fb1cc5703da038..054687411174d737f13e986f42e8d1f9135ea0a2 100644
|
| --- a/media/cast/test/utility/tap_proxy.cc
|
| +++ b/media/cast/test/utility/tap_proxy.cc
|
| @@ -41,7 +41,7 @@ class SendToFDPipe : public PacketPipe {
|
| public:
|
| explicit SendToFDPipe(int fd) : fd_(fd) {
|
| }
|
| - virtual void Send(scoped_ptr<Packet> packet) OVERRIDE {
|
| + virtual void Send(scoped_ptr<Packet> packet) override {
|
| while (1) {
|
| int written = write(
|
| fd_,
|
| @@ -89,7 +89,7 @@ class QueueManager : public base::MessageLoopForIO::Watcher {
|
| }
|
|
|
| // MessageLoopForIO::Watcher methods
|
| - virtual void OnFileCanReadWithoutBlocking(int fd) OVERRIDE {
|
| + virtual void OnFileCanReadWithoutBlocking(int fd) override {
|
| scoped_ptr<Packet> packet(new Packet(kMaxPacketSize));
|
| int nread = read(input_fd_,
|
| reinterpret_cast<char*>(&packet->front()),
|
| @@ -103,7 +103,7 @@ class QueueManager : public base::MessageLoopForIO::Watcher {
|
| packet->resize(nread);
|
| packet_pipe_->Send(packet.Pass());
|
| }
|
| - virtual void OnFileCanWriteWithoutBlocking(int fd) OVERRIDE {
|
| + virtual void OnFileCanWriteWithoutBlocking(int fd) override {
|
| NOTREACHED();
|
| }
|
|
|
| @@ -173,7 +173,7 @@ class ByteCounterPipe : public media::cast::test::PacketPipe {
|
| public:
|
| ByteCounterPipe(ByteCounter* counter) : counter_(counter) {}
|
| virtual void Send(scoped_ptr<media::cast::Packet> packet)
|
| - OVERRIDE {
|
| + override {
|
| counter_->Increment(packet->size());
|
| pipe_->Send(packet.Pass());
|
| }
|
|
|