X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fchrome%2Fbrowser%2Fcommand_updater_unittest.cc;h=9e94bf49f78ef188fc9f75e2a2df881f5266d035;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=fa7f3ab92669c09dd79e36a2b6ad21bd41a790a7;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/chrome/browser/command_updater_unittest.cc b/src/chrome/browser/command_updater_unittest.cc index fa7f3ab..9e94bf4 100644 --- a/src/chrome/browser/command_updater_unittest.cc +++ b/src/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; }