| Index: chrome/browser/command_updater_unittest.cc
|
| diff --git a/chrome/browser/command_updater_unittest.cc b/chrome/browser/command_updater_unittest.cc
|
| index 969509c48807ecaee03a3b1f5262240893f40f22..9e94bf49f78ef188fc9f75e2a2df881f5266d035 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;
|
| }
|
|
|
|
|