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

Unified Diff: device/serial/data_source_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_source_sender.cc ('k') | device/serial/serial_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/serial/data_source_unittest.cc
diff --git a/device/serial/data_source_unittest.cc b/device/serial/data_source_unittest.cc
index e185731522cbd18cc5902b2e59cbcdd506f58705..7e4d82079bd47fa418e33904019c1a7643d7d247 100644
--- a/device/serial/data_source_unittest.cc
+++ b/device/serial/data_source_unittest.cc
@@ -28,7 +28,7 @@ class DataSourceTest : public testing::Test {
DataSourceTest()
: error_(0), 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::DataSource> source_sender_handle;
source_sender_ = mojo::WeakBindToProxy(
@@ -39,7 +39,7 @@ class DataSourceTest : public testing::Test {
receiver_ = new DataReceiver(source_sender_handle.Pass(), 100, kFatalError);
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
write_buffer_.reset();
buffer_.reset();
message_loop_.reset();
« no previous file with comments | « device/serial/data_source_sender.cc ('k') | device/serial/serial_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698