Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(941)

Unified Diff: chrome/browser/renderer_context_menu/spelling_menu_observer.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698