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

Unified Diff: chrome/browser/ui/browser_focus_uitest.cc

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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/ui/browser_focus_uitest.cc
diff --git a/chrome/browser/ui/browser_focus_uitest.cc b/chrome/browser/ui/browser_focus_uitest.cc
index 3b81b3343b522f207e19686e437ec68b8232f8a2..d13fa7b0a3f0b5c2e7f6273e958928625bcb48df 100644
--- a/chrome/browser/ui/browser_focus_uitest.cc
+++ b/chrome/browser/ui/browser_focus_uitest.cc
@@ -65,7 +65,7 @@ const char kTypicalPage[] = "/focus/typical_page.html";
class BrowserFocusTest : public InProcessBrowserTest {
public:
// InProcessBrowserTest overrides:
- virtual void SetUpOnMainThread() OVERRIDE {
+ virtual void SetUpOnMainThread() override {
ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
}
@@ -145,8 +145,8 @@ class WaitForInterstitial : public content::WebContentsObserver {
runner_->Run();
}
- virtual void DidAttachInterstitialPage() OVERRIDE { runner_->Quit(); }
- virtual void DidDetachInterstitialPage() OVERRIDE { NOTREACHED(); }
+ virtual void DidAttachInterstitialPage() override { runner_->Quit(); }
+ virtual void DidDetachInterstitialPage() override { NOTREACHED(); }
private:
scoped_refptr<content::MessageLoopRunner> runner_;
@@ -172,7 +172,7 @@ class TestInterstitialPage : public content::InterstitialPageDelegate {
EXPECT_TRUE(tab->ShowingInterstitialPage());
}
- virtual std::string GetHTMLContents() OVERRIDE { return html_contents_; }
+ virtual std::string GetHTMLContents() override { return html_contents_; }
RenderViewHost* render_view_host() {
return interstitial_page_->GetRenderViewHostForTesting();
« no previous file with comments | « chrome/browser/ui/browser_content_translate_driver_observer.h ('k') | chrome/browser/ui/browser_instant_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698