| Index: chrome/browser/extensions/extension_context_menu_browsertest.cc
|
| ===================================================================
|
| --- chrome/browser/extensions/extension_context_menu_browsertest.cc (revision 181040)
|
| +++ chrome/browser/extensions/extension_context_menu_browsertest.cc (working copy)
|
| @@ -71,13 +71,14 @@
|
| protected:
|
| // These two functions implement pure virtual methods of
|
| // RenderViewContextMenu.
|
| - virtual bool GetAcceleratorForCommandId(int command_id,
|
| - ui::Accelerator* accelerator) {
|
| + virtual bool GetAcceleratorForCommandId(
|
| + int command_id,
|
| + ui::Accelerator* accelerator) OVERRIDE {
|
| // None of our commands have accelerators, so always return false.
|
| return false;
|
| }
|
| - virtual void PlatformInit() {}
|
| - virtual void PlatformCancel() {}
|
| + virtual void PlatformInit() OVERRIDE {}
|
| + virtual void PlatformCancel() OVERRIDE {}
|
| };
|
|
|
| } // namespace
|
| @@ -527,7 +528,7 @@
|
|
|
| class ExtensionContextMenuBrowserLazyTest :
|
| public ExtensionContextMenuBrowserTest {
|
| - void SetUpCommandLine(CommandLine* command_line) {
|
| + virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
|
| ExtensionContextMenuBrowserTest::SetUpCommandLine(command_line);
|
| // Set shorter delays to prevent test timeouts.
|
| command_line->AppendSwitchASCII(switches::kEventPageIdleTime, "0");
|
|
|