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

Unified Diff: chrome/browser/captive_portal/captive_portal_tab_reloader_unittest.cc

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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/captive_portal/captive_portal_tab_reloader_unittest.cc
diff --git a/chrome/browser/captive_portal/captive_portal_tab_reloader_unittest.cc b/chrome/browser/captive_portal/captive_portal_tab_reloader_unittest.cc
index 1c52a476fb662496c1add5c2a4edd84bc3cedecf..bd003fb2cdfe9946177e5d6504d1527d08f59754 100644
--- a/chrome/browser/captive_portal/captive_portal_tab_reloader_unittest.cc
+++ b/chrome/browser/captive_portal/captive_portal_tab_reloader_unittest.cc
@@ -78,7 +78,7 @@ class MockInterstitialPageDelegate : public content::InterstitialPageDelegate {
private:
// InterstitialPageDelegate implementation:
- virtual std::string GetHTMLContents() OVERRIDE {
+ virtual std::string GetHTMLContents() override {
return "HTML Contents";
}
@@ -88,7 +88,7 @@ class MockInterstitialPageDelegate : public content::InterstitialPageDelegate {
class CaptivePortalTabReloaderTest : public ChromeRenderViewHostTestHarness {
public:
// testing::Test:
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
ChromeRenderViewHostTestHarness::SetUp();
tab_reloader_.reset(new testing::StrictMock<TestCaptivePortalTabReloader>(
web_contents()));
@@ -97,7 +97,7 @@ class CaptivePortalTabReloaderTest : public ChromeRenderViewHostTestHarness {
tab_reloader_->set_slow_ssl_load_time(base::TimeDelta());
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
EXPECT_FALSE(tab_reloader().TimerRunning());
tab_reloader_.reset(NULL);
ChromeRenderViewHostTestHarness::TearDown();
« no previous file with comments | « chrome/browser/captive_portal/captive_portal_tab_helper_unittest.cc ('k') | chrome/browser/chrome_browser_main.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698