| Index: chrome/browser/signin/easy_unlock_service.h
|
| diff --git a/chrome/browser/signin/easy_unlock_service.h b/chrome/browser/signin/easy_unlock_service.h
|
| index 2e3c7b4669098a21884a222aab5aec5314d3d78c..8a77b7c6a06963d92d126c53865b57209d28ecd7 100644
|
| --- a/chrome/browser/signin/easy_unlock_service.h
|
| +++ b/chrome/browser/signin/easy_unlock_service.h
|
| @@ -153,7 +153,7 @@ class EasyUnlockService : public KeyedService {
|
|
|
| protected:
|
| explicit EasyUnlockService(Profile* profile);
|
| - virtual ~EasyUnlockService();
|
| + ~EasyUnlockService() override;
|
|
|
| // Does a service type specific initialization.
|
| virtual void InitializeInternal() = 0;
|
| @@ -167,7 +167,7 @@ class EasyUnlockService : public KeyedService {
|
| virtual bool IsAllowedInternal() = 0;
|
|
|
| // KeyedService override:
|
| - virtual void Shutdown() override;
|
| + void Shutdown() override;
|
|
|
| // Exposes the profile to which the service is attached to subclasses.
|
| Profile* profile() const { return profile_; }
|
|
|