| Index: device/serial/data_source_sender.cc
|
| diff --git a/device/serial/data_source_sender.cc b/device/serial/data_source_sender.cc
|
| index e67a81ea17e189fbb6961bb75438e01d91c6fcfb..4eaee758b987b337710244dc38ec0ac24fb46821 100644
|
| --- a/device/serial/data_source_sender.cc
|
| +++ b/device/serial/data_source_sender.cc
|
| @@ -52,10 +52,10 @@ class DataSourceSender::PendingSend::Buffer : public WritableBuffer {
|
| virtual ~Buffer();
|
|
|
| // WritableBuffer overrides.
|
| - virtual char* GetData() OVERRIDE;
|
| - virtual uint32_t GetSize() OVERRIDE;
|
| - virtual void Done(uint32_t bytes_written) OVERRIDE;
|
| - virtual void DoneWithError(uint32_t bytes_written, int32_t error) OVERRIDE;
|
| + virtual char* GetData() override;
|
| + virtual uint32_t GetSize() override;
|
| + virtual void Done(uint32_t bytes_written) override;
|
| + virtual void DoneWithError(uint32_t bytes_written, int32_t error) override;
|
|
|
| private:
|
| // The DataSourceSender whose data pipe we are providing a view.
|
|
|