Index: components/captive_portal/captive_portal_detector.h |
diff --git a/components/captive_portal/captive_portal_detector.h b/components/captive_portal/captive_portal_detector.h |
index 1e155b737ab1859e6d86e0a9a4a97fed8057c375..fdbb7840eea1f35a9f224aa25e3ac06a0bc1133c 100644 |
--- a/components/captive_portal/captive_portal_detector.h |
+++ b/components/captive_portal/captive_portal_detector.h |
@@ -49,7 +49,7 @@ class CAPTIVE_PORTAL_EXPORT CaptivePortalDetector |
explicit CaptivePortalDetector( |
const scoped_refptr<net::URLRequestContextGetter>& request_context); |
- virtual ~CaptivePortalDetector(); |
+ ~CaptivePortalDetector() override; |
// Triggers a check for a captive portal. After completion, runs the |
// |callback|. |
@@ -62,7 +62,7 @@ class CAPTIVE_PORTAL_EXPORT CaptivePortalDetector |
friend class CaptivePortalDetectorTestBase; |
// net::URLFetcherDelegate: |
- virtual void OnURLFetchComplete(const net::URLFetcher* source) override; |
+ void OnURLFetchComplete(const net::URLFetcher* source) override; |
// Takes a net::URLFetcher that has finished trying to retrieve the |
// test URL, and fills a Results struct based on its result. If the |