| Index: chrome/utility/media_galleries/ipc_data_source.h
|
| diff --git a/chrome/utility/media_galleries/ipc_data_source.h b/chrome/utility/media_galleries/ipc_data_source.h
|
| index 6fb3b76a58645e56687e15b4b74ee0a786e9da9b..955837fa3d12a7fdd0ba5d2e689c6079b5978478 100644
|
| --- a/chrome/utility/media_galleries/ipc_data_source.h
|
| +++ b/chrome/utility/media_galleries/ipc_data_source.h
|
| @@ -32,16 +32,16 @@ class IPCDataSource: public media::DataSource,
|
|
|
| // Implementation of DataSource. These methods may be called on any single
|
| // thread. First usage of these methods attaches a thread checker.
|
| - virtual void Stop() OVERRIDE;
|
| + virtual void Stop() override;
|
| virtual void Read(int64 position, int size, uint8* data,
|
| - const ReadCB& read_cb) OVERRIDE;
|
| - virtual bool GetSize(int64* size_out) OVERRIDE;
|
| - virtual bool IsStreaming() OVERRIDE;
|
| - virtual void SetBitrate(int bitrate) OVERRIDE;
|
| + const ReadCB& read_cb) override;
|
| + virtual bool GetSize(int64* size_out) override;
|
| + virtual bool IsStreaming() override;
|
| + virtual void SetBitrate(int bitrate) override;
|
|
|
| // Implementation of UtilityMessageHandler. May only be called on the utility
|
| // thread.
|
| - virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
| + virtual bool OnMessageReceived(const IPC::Message& message) override;
|
|
|
| private:
|
| struct Request {
|
|
|