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

Unified Diff: chrome/browser/ui/webui/signin/inline_login_ui_browsertest.cc

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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/webui/signin/inline_login_ui_browsertest.cc
diff --git a/chrome/browser/ui/webui/signin/inline_login_ui_browsertest.cc b/chrome/browser/ui/webui/signin/inline_login_ui_browsertest.cc
index ab41e2c6c31670a7abb925d2a751b6ccbe4af4ce..116475df4422d48373b510c1758e208f0b36c0ea 100644
--- a/chrome/browser/ui/webui/signin/inline_login_ui_browsertest.cc
+++ b/chrome/browser/ui/webui/signin/inline_login_ui_browsertest.cc
@@ -189,7 +189,7 @@ class InlineLoginUISafeIframeBrowserTest : public InProcessBrowserTest {
InProcessBrowserTest::SetUp();
}
- virtual void SetUpCommandLine(CommandLine* command_line) override {
+ void SetUpCommandLine(CommandLine* command_line) override {
const GURL& base_url = embedded_test_server()->base_url();
command_line->AppendSwitchASCII(::switches::kGaiaUrl, base_url.spec());
command_line->AppendSwitchASCII(::switches::kLsoUrl, base_url.spec());
@@ -197,7 +197,7 @@ class InlineLoginUISafeIframeBrowserTest : public InProcessBrowserTest {
base_url.spec());
}
- virtual void SetUpOnMainThread() override {
+ void SetUpOnMainThread() override {
embedded_test_server()->RestartThreadAndListen();
content::WebUIControllerFactory::UnregisterFactoryForTesting(
@@ -208,7 +208,7 @@ class InlineLoginUISafeIframeBrowserTest : public InProcessBrowserTest {
GURL(kFooWebUIURL).host(), &foo_provider_);
}
- virtual void TearDownOnMainThread() override {
+ void TearDownOnMainThread() override {
test_factory_->RemoveFactoryOverride(GURL(kFooWebUIURL).host());
content::WebUIControllerFactory::UnregisterFactoryForTesting(
test_factory_.get());

Powered by Google App Engine
This is Rietveld 408576698