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

Unified Diff: device/serial/data_sender.h

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.cc ('k') | device/serial/data_sink_receiver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/serial/data_sender.h
diff --git a/device/serial/data_sender.h b/device/serial/data_sender.h
index ab21db448d3991453cc3cd034718b33d05413c4b..6e5c89e85c0b587643b31f4fc006032844222729 100644
--- a/device/serial/data_sender.h
+++ b/device/serial/data_sender.h
@@ -53,14 +53,14 @@ class DataSender : public serial::DataSinkClient, public mojo::ErrorHandler {
class PendingSend;
// serial::DataSinkClient overrides.
- virtual void ReportBytesSent(uint32_t bytes_sent) OVERRIDE;
+ virtual void ReportBytesSent(uint32_t bytes_sent) override;
virtual void ReportBytesSentAndError(
uint32_t bytes_sent,
int32_t error,
- const mojo::Callback<void(uint32_t)>& callback) OVERRIDE;
+ const mojo::Callback<void(uint32_t)>& callback) override;
// mojo::ErrorHandler override.
- virtual void OnConnectionError() OVERRIDE;
+ virtual void OnConnectionError() override;
// Copies data from |pending_sends_| into the data pipe and starts |waiter_|
// waiting if the pipe is full. When a PendingSend in |pending_sends_| has
« no previous file with comments | « device/serial/data_receiver.cc ('k') | device/serial/data_sink_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698