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

Unified Diff: chrome/browser/renderer_context_menu/spelling_menu_observer_browsertest.cc

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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_browsertest.cc
diff --git a/chrome/browser/renderer_context_menu/spelling_menu_observer_browsertest.cc b/chrome/browser/renderer_context_menu/spelling_menu_observer_browsertest.cc
index 3b4a8414267f8ea3335e942d7b407c527a6d5448..84cacefef40cd4dbe53036ac459f633d5711c096 100644
--- a/chrome/browser/renderer_context_menu/spelling_menu_observer_browsertest.cc
+++ b/chrome/browser/renderer_context_menu/spelling_menu_observer_browsertest.cc
@@ -47,20 +47,20 @@ class MockRenderViewContextMenu : public RenderViewContextMenuProxy {
// RenderViewContextMenuProxy implementation.
virtual void AddMenuItem(int command_id,
- const base::string16& title) OVERRIDE;
+ const base::string16& title) override;
virtual void AddCheckItem(int command_id,
- const base::string16& title) OVERRIDE;
- virtual void AddSeparator() OVERRIDE;
+ const base::string16& title) override;
+ virtual void AddSeparator() override;
virtual void AddSubMenu(int command_id,
const base::string16& label,
- ui::MenuModel* model) OVERRIDE;
+ ui::MenuModel* model) override;
virtual void UpdateMenuItem(int command_id,
bool enabled,
bool hidden,
- const base::string16& title) OVERRIDE;
- virtual RenderViewHost* GetRenderViewHost() const OVERRIDE;
- virtual WebContents* GetWebContents() const OVERRIDE;
- virtual content::BrowserContext* GetBrowserContext() const OVERRIDE;
+ const base::string16& title) override;
+ virtual RenderViewHost* GetRenderViewHost() const override;
+ virtual WebContents* GetWebContents() const override;
+ virtual content::BrowserContext* GetBrowserContext() const override;
// Attaches a RenderViewContextMenuObserver to be tested.
void SetObserver(RenderViewContextMenuObserver* observer);
@@ -206,11 +206,11 @@ class SpellingMenuObserverTest : public InProcessBrowserTest {
public:
SpellingMenuObserverTest();
- virtual void SetUpOnMainThread() OVERRIDE {
+ virtual void SetUpOnMainThread() override {
Reset(false);
}
- virtual void TearDownOnMainThread() OVERRIDE {
+ virtual void TearDownOnMainThread() override {
observer_.reset();
menu_.reset();
}

Powered by Google App Engine
This is Rietveld 408576698