Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(617)

Unified Diff: net/url_request/url_request_filter.h

Issue 3859003: FBTF: Even more ctor/virtual deinlining. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698