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

Unified Diff: device/serial/data_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_receiver.h ('k') | device/serial/data_sender.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/serial/data_receiver.cc
diff --git a/device/serial/data_receiver.cc b/device/serial/data_receiver.cc
index 521143797216bd8acb2f039d90c0a2570bbe8ff5..b6e44a977ec64bdc977ffc8d9f4014889d9e6743 100644
--- a/device/serial/data_receiver.cc
+++ b/device/serial/data_receiver.cc
@@ -66,10 +66,10 @@ class DataReceiver::PendingReceive::Buffer : public ReadOnlyBuffer {
virtual ~Buffer();
// ReadOnlyBuffer overrides.
- virtual const char* GetData() OVERRIDE;
- virtual uint32_t GetSize() OVERRIDE;
- virtual void Done(uint32_t bytes_consumed) OVERRIDE;
- virtual void DoneWithError(uint32_t bytes_consumed, int32_t error) OVERRIDE;
+ virtual const char* GetData() override;
+ virtual uint32_t GetSize() override;
+ virtual void Done(uint32_t bytes_consumed) override;
+ virtual void DoneWithError(uint32_t bytes_consumed, int32_t error) override;
private:
// The DataReceiver whose data pipe we are providing a view.
« no previous file with comments | « device/serial/data_receiver.h ('k') | device/serial/data_sender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698