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

Unified Diff: chrome/browser/chromeos/login/ui/simple_web_view_dialog_browsertest.cc

Issue 834383004: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/login/ui. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/chromeos/login/ui/simple_web_view_dialog_browsertest.cc
diff --git a/chrome/browser/chromeos/login/ui/simple_web_view_dialog_browsertest.cc b/chrome/browser/chromeos/login/ui/simple_web_view_dialog_browsertest.cc
index 79436cc89a06db4d30b13631f86634b15872daab..9104cf79330ebac9e4bc161c2b09a501f7388489 100644
--- a/chrome/browser/chromeos/login/ui/simple_web_view_dialog_browsertest.cc
+++ b/chrome/browser/chromeos/login/ui/simple_web_view_dialog_browsertest.cc
@@ -22,8 +22,8 @@ namespace {
class StubDelegate : public CaptivePortalWindowProxyDelegate {
public:
StubDelegate() {}
- virtual ~StubDelegate() {}
- virtual void OnPortalDetected() override {}
+ ~StubDelegate() override {}
+ void OnPortalDetected() override {}
private:
DISALLOW_COPY_AND_ASSIGN(StubDelegate);
@@ -37,11 +37,11 @@ class InterstitialPageDelegate : public content::InterstitialPageDelegate {
page->Show();
}
- virtual ~InterstitialPageDelegate() {}
+ ~InterstitialPageDelegate() override {}
private:
// InterstitialPageDelegate implementation:
- virtual std::string GetHTMLContents() override { return "HTML Contents"; }
+ std::string GetHTMLContents() override { return "HTML Contents"; }
DISALLOW_COPY_AND_ASSIGN(InterstitialPageDelegate);
};
@@ -51,7 +51,7 @@ class InterstitialPageDelegate : public content::InterstitialPageDelegate {
class SimpleWebViewDialogTest : public LoginManagerTest {
public:
SimpleWebViewDialogTest(): LoginManagerTest(false) {}
- virtual ~SimpleWebViewDialogTest() {}
+ ~SimpleWebViewDialogTest() override {}
InterstitialPageDelegate* CreateDelegate(CaptivePortalWindowProxy* proxy) {
SimpleWebViewDialog* dialog = proxy->captive_portal_view_for_testing();
« no previous file with comments | « chrome/browser/chromeos/login/ui/simple_web_view_dialog.cc ('k') | chrome/browser/chromeos/login/ui/user_adding_screen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698