| Index: media/blink/buffered_data_source_host_impl.h
|
| diff --git a/media/blink/buffered_data_source_host_impl.h b/media/blink/buffered_data_source_host_impl.h
|
| index 0af4943a0aa7b148dbc2939c5774f7a50cbfb42b..8dd2ab7c306497380ab94de7be267a3d2ba5e07a 100644
|
| --- a/media/blink/buffered_data_source_host_impl.h
|
| +++ b/media/blink/buffered_data_source_host_impl.h
|
| @@ -18,11 +18,11 @@ class MEDIA_EXPORT BufferedDataSourceHostImpl
|
| : public BufferedDataSourceHost {
|
| public:
|
| BufferedDataSourceHostImpl();
|
| - virtual ~BufferedDataSourceHostImpl();
|
| + ~BufferedDataSourceHostImpl() override;
|
|
|
| // BufferedDataSourceHost implementation.
|
| - virtual void SetTotalBytes(int64 total_bytes) override;
|
| - virtual void AddBufferedByteRange(int64 start, int64 end) override;
|
| + void SetTotalBytes(int64 total_bytes) override;
|
| + void AddBufferedByteRange(int64 start, int64 end) override;
|
|
|
| // Translate the byte ranges to time ranges and append them to the list.
|
| // TODO(sandersd): This is a confusing name, find something better.
|
|
|