| Index: chrome/browser/command_updater_unittest.cc
|
| diff --git a/chrome/browser/command_updater_unittest.cc b/chrome/browser/command_updater_unittest.cc
|
| index fa7f3ab92669c09dd79e36a2b6ad21bd41a790a7..969509c48807ecaee03a3b1f5262240893f40f22 100644
|
| --- a/chrome/browser/command_updater_unittest.cc
|
| +++ b/chrome/browser/command_updater_unittest.cc
|
| @@ -12,7 +12,7 @@
|
| class FakeCommandUpdaterDelegate : public CommandUpdaterDelegate {
|
| public:
|
| virtual void ExecuteCommandWithDisposition(int id,
|
| - WindowOpenDisposition) OVERRIDE {
|
| + WindowOpenDisposition) override {
|
| EXPECT_EQ(1, id);
|
| }
|
| };
|
| @@ -21,7 +21,7 @@ class FakeCommandObserver : public CommandObserver {
|
| public:
|
| FakeCommandObserver() : enabled_(true) {}
|
|
|
| - virtual void EnabledStateChangedForCommand(int id, bool enabled) OVERRIDE {
|
| + virtual void EnabledStateChangedForCommand(int id, bool enabled) override {
|
| enabled_ = enabled;
|
| }
|
|
|
|
|