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

Unified Diff: net/url_request/url_request_job_factory.h

Issue 10836248: Turned job_factory into a pure virtual class (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleaned up, responded to suggestions Created 8 years, 4 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_job_factory.h
diff --git a/net/url_request/url_request_job_factory.h b/net/url_request/url_request_job_factory.h
index 746e9486894546b36f8d9fb20a5ffdaec8109bb7..49c8ef3579f34149fdc63721e12692bd596a0a41 100644
--- a/net/url_request/url_request_job_factory.h
+++ b/net/url_request/url_request_job_factory.h
@@ -5,10 +5,9 @@
#ifndef NET_URL_REQUEST_URL_REQUEST_JOB_FACTORY_H_
#define NET_URL_REQUEST_URL_REQUEST_JOB_FACTORY_H_
-#include <map>
#include <string>
-#include <vector>
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "base/threading/non_thread_safe.h"
#include "net/base/net_export.h"
@@ -66,39 +65,36 @@ class NET_EXPORT URLRequestJobFactory
};
URLRequestJobFactory();
- ~URLRequestJobFactory();
+ virtual ~URLRequestJobFactory();
+ // TODO(shalev): Remove this from the interface.
// Sets the ProtocolHandler for a scheme. Returns true on success, false on
// failure (a ProtocolHandler already exists for |scheme|). On success,
// URLRequestJobFactory takes ownership of |protocol_handler|.
- bool SetProtocolHandler(const std::string& scheme,
- ProtocolHandler* protocol_handler);
+ virtual bool SetProtocolHandler(const std::string& scheme,
+ ProtocolHandler* protocol_handler) = 0;
+ // TODO(shalev): Remove this from the interface.
// Takes ownership of |interceptor|. Adds it to the end of the Interceptor
// list.
- void AddInterceptor(Interceptor* interceptor);
+ virtual void AddInterceptor(Interceptor* interceptor) = 0;
- URLRequestJob* MaybeCreateJobWithInterceptor(URLRequest* request) const;
+ virtual URLRequestJob* MaybeCreateJobWithInterceptor(
willchan no longer on Chromium 2012/08/16 20:35:37 Shouldn't there be a TODO here to kill this too?
erikwright (departed) 2012/08/21 17:43:32 The two TODOs added are in reference to the mutato
willchan no longer on Chromium 2012/08/21 17:58:01 Not sure if I understand your comments. What I was
erikwright (departed) 2012/08/21 18:02:13 Great. We are in agreement. A single TODO should
shalev 2012/08/22 19:10:11 Done.
+ URLRequest* request) const = 0;
- URLRequestJob* MaybeCreateJobWithProtocolHandler(const std::string& scheme,
- URLRequest* request) const;
+ virtual URLRequestJob* MaybeCreateJobWithProtocolHandler(
willchan no longer on Chromium 2012/08/16 20:35:37 Ditto
+ const std::string& scheme, URLRequest* request) const = 0;
- URLRequestJob* MaybeInterceptRedirect(const GURL& location,
- URLRequest* request) const;
+ virtual URLRequestJob* MaybeInterceptRedirect(
+ const GURL& location, URLRequest* request) const = 0;
- URLRequestJob* MaybeInterceptResponse(URLRequest* request) const;
+ virtual URLRequestJob* MaybeInterceptResponse(URLRequest* request) const = 0;
- bool IsHandledProtocol(const std::string& scheme) const;
+ virtual bool IsHandledProtocol(const std::string& scheme) const = 0;
- bool IsHandledURL(const GURL& url) const;
+ virtual bool IsHandledURL(const GURL& url) const = 0;
private:
- typedef std::map<std::string, ProtocolHandler*> ProtocolHandlerMap;
- typedef std::vector<Interceptor*> InterceptorList;
-
- ProtocolHandlerMap protocol_handler_map_;
- InterceptorList interceptors_;
-
DISALLOW_COPY_AND_ASSIGN(URLRequestJobFactory);
};

Powered by Google App Engine
This is Rietveld 408576698