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

Unified Diff: device/serial/data_sink_unittest.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.cc ('k') | device/serial/data_source_sender.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/serial/data_sink_unittest.cc
diff --git a/device/serial/data_sink_unittest.cc b/device/serial/data_sink_unittest.cc
index 605ccf644b212615c51da2496090fbda32281e65..cc983c9d84212af2fbe25aca9b884c0f6abfa672 100644
--- a/device/serial/data_sink_unittest.cc
+++ b/device/serial/data_sink_unittest.cc
@@ -35,7 +35,7 @@ class DataSinkTest : public testing::Test {
seen_connection_error_(false),
expected_event_(EVENT_NONE) {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
message_loop_.reset(new base::MessageLoop);
mojo::InterfacePtr<serial::DataSink> sink_handle;
sink_receiver_ = mojo::WeakBindToProxy(
@@ -47,7 +47,7 @@ class DataSinkTest : public testing::Test {
sender_.reset(new DataSender(sink_handle.Pass(), kBufferSize, kFatalError));
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
read_buffer_.reset();
message_loop_.reset();
if (sink_receiver_.get())
« no previous file with comments | « device/serial/data_sink_receiver.cc ('k') | device/serial/data_source_sender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698