| Index: net/url_request/url_request_filter.h
|
| diff --git a/net/url_request/url_request_filter.h b/net/url_request/url_request_filter.h
|
| index 58f9886dac145bdc55784612de85bc23151a2499..17eb4bbe1c6cf4583c455abcbe8878e0e7434170 100644
|
| --- a/net/url_request/url_request_filter.h
|
| +++ b/net/url_request/url_request_filter.h
|
| @@ -42,6 +42,8 @@ class URLRequestFilter {
|
|
|
| static URLRequest::ProtocolFactory Factory;
|
|
|
| + ~URLRequestFilter();
|
| +
|
| void AddHostnameHandler(const std::string& scheme,
|
| const std::string& hostname,
|
| URLRequest::ProtocolFactory* factory);
|
| @@ -62,7 +64,7 @@ class URLRequestFilter {
|
| int hit_count() const { return hit_count_; }
|
|
|
| protected:
|
| - URLRequestFilter() : hit_count_(0) { }
|
| + URLRequestFilter();
|
|
|
| // Helper method that looks up the request in the url_handler_map_.
|
| URLRequestJob* FindRequestHandler(URLRequest* request,
|
|
|