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

Unified Diff: athena/input/accelerator_manager_unittest.cc

Issue 641683003: C++11 override style change for athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase 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 | « athena/input/accelerator_manager_impl.cc ('k') | athena/input/input_manager_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/input/accelerator_manager_unittest.cc
diff --git a/athena/input/accelerator_manager_unittest.cc b/athena/input/accelerator_manager_unittest.cc
index a8d40682063d129d899ee020f2416e6c04937f3d..4c57f1ef37f43d88c1faee234a631aa49f7fcf42 100644
--- a/athena/input/accelerator_manager_unittest.cc
+++ b/athena/input/accelerator_manager_unittest.cc
@@ -16,7 +16,7 @@ const int kInvalidCommandId = -1;
class TestHandler : public AcceleratorHandler {
public:
TestHandler() : fired_command_id_(kInvalidCommandId), enabled_(true) {}
- virtual ~TestHandler() {}
+ ~TestHandler() override {}
void set_enabled(bool enabled) { enabled_ = enabled; }
« no previous file with comments | « athena/input/accelerator_manager_impl.cc ('k') | athena/input/input_manager_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698