| Index: chrome/browser/renderer_context_menu/spelling_menu_observer.h
|
| diff --git a/chrome/browser/renderer_context_menu/spelling_menu_observer.h b/chrome/browser/renderer_context_menu/spelling_menu_observer.h
|
| index c6db4f3c63c488f2cb834398213a5b41783e2c1f..a29965de2f727d95129101daa737c520e87fadaf 100644
|
| --- a/chrome/browser/renderer_context_menu/spelling_menu_observer.h
|
| +++ b/chrome/browser/renderer_context_menu/spelling_menu_observer.h
|
| @@ -40,15 +40,15 @@ struct SpellCheckResult;
|
| class SpellingMenuObserver : public RenderViewContextMenuObserver {
|
| public:
|
| explicit SpellingMenuObserver(RenderViewContextMenuProxy* proxy);
|
| - virtual ~SpellingMenuObserver();
|
| + ~SpellingMenuObserver() override;
|
|
|
| // RenderViewContextMenuObserver implementation.
|
| - virtual void InitMenu(const content::ContextMenuParams& params) override;
|
| - virtual bool IsCommandIdSupported(int command_id) override;
|
| - virtual bool IsCommandIdChecked(int command_id) override;
|
| - virtual bool IsCommandIdEnabled(int command_id) override;
|
| - virtual void ExecuteCommand(int command_id) override;
|
| - virtual void OnMenuCancel() override;
|
| + void InitMenu(const content::ContextMenuParams& params) override;
|
| + bool IsCommandIdSupported(int command_id) override;
|
| + bool IsCommandIdChecked(int command_id) override;
|
| + bool IsCommandIdEnabled(int command_id) override;
|
| + void ExecuteCommand(int command_id) override;
|
| + void OnMenuCancel() override;
|
|
|
| // A callback function called when the Spelling service finishes checking a
|
| // misspelled word.
|
|
|