| Index: chrome/browser/captive_portal/captive_portal_service.h
|
| diff --git a/chrome/browser/captive_portal/captive_portal_service.h b/chrome/browser/captive_portal/captive_portal_service.h
|
| index 8131f62b7aecd1e1306b9ec5b812c98ff53b9fab..66e6d1b4182049e14af547361a2e04522fe8148f 100644
|
| --- a/chrome/browser/captive_portal/captive_portal_service.h
|
| +++ b/chrome/browser/captive_portal/captive_portal_service.h
|
| @@ -43,7 +43,7 @@ class CaptivePortalService : public KeyedService, public base::NonThreadSafe {
|
| };
|
|
|
| explicit CaptivePortalService(Profile* profile);
|
| - virtual ~CaptivePortalService();
|
| + ~CaptivePortalService() override;
|
|
|
| // Triggers a check for a captive portal. If there's already a check in
|
| // progress, does nothing. Throttles the rate at which requests are sent.
|
| @@ -114,7 +114,7 @@ class CaptivePortalService : public KeyedService, public base::NonThreadSafe {
|
| const captive_portal::CaptivePortalDetector::Results& results);
|
|
|
| // KeyedService:
|
| - virtual void Shutdown() override;
|
| + void Shutdown() override;
|
|
|
| // Called when a captive portal check completes. Passes the result to all
|
| // observers.
|
|
|