summaryrefslogtreecommitdiffstats
path: root/chrome/browser/command_updater_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/command_updater_unittest.cc')
-rw-r--r--chrome/browser/command_updater_unittest.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/command_updater_unittest.cc b/chrome/browser/command_updater_unittest.cc
index 969509c..9e94bf4 100644
--- a/chrome/browser/command_updater_unittest.cc
+++ b/chrome/browser/command_updater_unittest.cc
@@ -11,8 +11,7 @@
class FakeCommandUpdaterDelegate : public CommandUpdaterDelegate {
public:
- virtual void ExecuteCommandWithDisposition(int id,
- WindowOpenDisposition) override {
+ void ExecuteCommandWithDisposition(int id, WindowOpenDisposition) override {
EXPECT_EQ(1, id);
}
};
@@ -21,7 +20,7 @@ class FakeCommandObserver : public CommandObserver {
public:
FakeCommandObserver() : enabled_(true) {}
- virtual void EnabledStateChangedForCommand(int id, bool enabled) override {
+ void EnabledStateChangedForCommand(int id, bool enabled) override {
enabled_ = enabled;
}