Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1889)

Unified Diff: device/serial/data_sink_receiver.cc

Issue 628873002: replace OVERRIDE and FINAL with override and final in device/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « device/serial/data_sink_receiver.h ('k') | device/serial/data_sink_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/serial/data_sink_receiver.cc
diff --git a/device/serial/data_sink_receiver.cc b/device/serial/data_sink_receiver.cc
index cadc9e3de6e6e4aef52bf1b23793902f1979adf2..767f036ba4eb60c351a5c1f79e6c6d863ffb3615 100644
--- a/device/serial/data_sink_receiver.cc
+++ b/device/serial/data_sink_receiver.cc
@@ -49,10 +49,10 @@ class DataSinkReceiver::Buffer : public ReadOnlyBuffer {
void Cancel(int32_t error);
// ReadOnlyBuffer overrides.
- virtual const char* GetData() OVERRIDE;
- virtual uint32_t GetSize() OVERRIDE;
- virtual void Done(uint32_t bytes_read) OVERRIDE;
- virtual void DoneWithError(uint32_t bytes_read, int32_t error) OVERRIDE;
+ virtual const char* GetData() override;
+ virtual uint32_t GetSize() override;
+ virtual void Done(uint32_t bytes_read) override;
+ virtual void DoneWithError(uint32_t bytes_read, int32_t error) override;
private:
// The DataSinkReceiver whose data pipe we are providing a view.
« no previous file with comments | « device/serial/data_sink_receiver.h ('k') | device/serial/data_sink_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698