| Index: chrome/browser/web_resource/resource_request_allowed_notifier_test_util.h
|
| diff --git a/chrome/browser/web_resource/resource_request_allowed_notifier_test_util.h b/chrome/browser/web_resource/resource_request_allowed_notifier_test_util.h
|
| index 0ac85b14435c542dc393cdc6e34630a67d4a9c37..ee6685d29da249b0968c275c2b976ba74dc396d1 100644
|
| --- a/chrome/browser/web_resource/resource_request_allowed_notifier_test_util.h
|
| +++ b/chrome/browser/web_resource/resource_request_allowed_notifier_test_util.h
|
| @@ -19,7 +19,7 @@
|
| class TestRequestAllowedNotifier : public ResourceRequestAllowedNotifier {
|
| public:
|
| TestRequestAllowedNotifier();
|
| - virtual ~TestRequestAllowedNotifier();
|
| + ~TestRequestAllowedNotifier() override;
|
|
|
| // A version of |Init()| that accepts a custom EulaAcceptedNotifier.
|
| void InitWithEulaAcceptNotifier(
|
| @@ -34,8 +34,8 @@ class TestRequestAllowedNotifier : public ResourceRequestAllowedNotifier {
|
| void NotifyObserver();
|
|
|
| // ResourceRequestAllowedNotifier overrides:
|
| - virtual State GetResourceRequestsAllowedState() override;
|
| - virtual EulaAcceptedNotifier* CreateEulaNotifier() override;
|
| + State GetResourceRequestsAllowedState() override;
|
| + EulaAcceptedNotifier* CreateEulaNotifier() override;
|
|
|
| private:
|
| scoped_ptr<EulaAcceptedNotifier> test_eula_notifier_;
|
|
|