| Index: chrome/browser/web_resource/web_resource_service.h
|
| diff --git a/chrome/browser/web_resource/web_resource_service.h b/chrome/browser/web_resource/web_resource_service.h
|
| index b5aa7ffe6be3880cfba10d32da8de6b8ec4b4b57..74cd8a04710360ca334cb5abfa4eaae2a0951600 100644
|
| --- a/chrome/browser/web_resource/web_resource_service.h
|
| +++ b/chrome/browser/web_resource/web_resource_service.h
|
| @@ -46,12 +46,11 @@ class WebResourceService
|
| void StartAfterDelay();
|
|
|
| // JSONAsynchronousUnpackerDelegate methods.
|
| - virtual void OnUnpackFinished(
|
| - const base::DictionaryValue& parsed_json) override;
|
| - virtual void OnUnpackError(const std::string& error_message) override;
|
| + void OnUnpackFinished(const base::DictionaryValue& parsed_json) override;
|
| + void OnUnpackError(const std::string& error_message) override;
|
|
|
| protected:
|
| - virtual ~WebResourceService();
|
| + ~WebResourceService() override;
|
|
|
| // For the subclasses to process the result of a fetch.
|
| virtual void Unpack(const base::DictionaryValue& parsed_json) = 0;
|
| @@ -63,7 +62,7 @@ class WebResourceService
|
| friend class base::RefCountedThreadSafe<WebResourceService>;
|
|
|
| // net::URLFetcherDelegate implementation:
|
| - virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
|
| + void OnURLFetchComplete(const net::URLFetcher* source) override;
|
|
|
| // Schedules a fetch after |delay_ms| milliseconds.
|
| void ScheduleFetch(int64 delay_ms);
|
| @@ -75,7 +74,7 @@ class WebResourceService
|
| void EndFetch();
|
|
|
| // Implements ResourceRequestAllowedNotifier::Observer.
|
| - virtual void OnResourceRequestsAllowed() override;
|
| + void OnResourceRequestsAllowed() override;
|
|
|
| // Helper class used to tell this service if it's allowed to make network
|
| // resource requests.
|
|
|