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 955837fa3d12a7fdd0ba5d2e689c6079b5978478..dda9364be6924870583be1262fb0dd5ede2bb5cf 100644 |
--- a/chrome/utility/media_galleries/ipc_data_source.h |
+++ b/chrome/utility/media_galleries/ipc_data_source.h |
@@ -28,20 +28,22 @@ class IPCDataSource: public media::DataSource, |
public: |
// May only be called on the utility thread. |
explicit IPCDataSource(int64 total_size); |
- virtual ~IPCDataSource(); |
+ ~IPCDataSource() override; |
// 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 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; |
+ void Stop() override; |
+ void Read(int64 position, |
+ int size, |
+ uint8* data, |
+ const ReadCB& read_cb) override; |
+ bool GetSize(int64* size_out) override; |
+ bool IsStreaming() override; |
+ void SetBitrate(int bitrate) override; |
// Implementation of UtilityMessageHandler. May only be called on the utility |
// thread. |
- virtual bool OnMessageReceived(const IPC::Message& message) override; |
+ bool OnMessageReceived(const IPC::Message& message) override; |
private: |
struct Request { |