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

Unified Diff: chrome/browser/custom_handlers/protocol_handler_registry.cc

Issue 11227017: Remove the mutation functions interfaces from URLRequestJobFactory. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix Android Webview interfaces; also a long awaited rebase. Created 7 years, 10 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: chrome/browser/custom_handlers/protocol_handler_registry.cc
diff --git a/chrome/browser/custom_handlers/protocol_handler_registry.cc b/chrome/browser/custom_handlers/protocol_handler_registry.cc
index be39398bf7d39edf9f766fa5ce3728cbed8b01db..3f85f8eb9f90bee071cfacb1d9cf154b44697e20 100644
--- a/chrome/browser/custom_handlers/protocol_handler_registry.cc
+++ b/chrome/browser/custom_handlers/protocol_handler_registry.cc
@@ -175,16 +175,6 @@ void ProtocolHandlerRegistry::JobInterceptorFactory::Chain(
job_factory_ = job_factory.Pass();
}
-bool ProtocolHandlerRegistry::JobInterceptorFactory::SetProtocolHandler(
- const std::string& scheme, ProtocolHandler* protocol_handler) {
- return job_factory_->SetProtocolHandler(scheme, protocol_handler);
-}
-
-void ProtocolHandlerRegistry::JobInterceptorFactory::AddInterceptor(
- Interceptor* interceptor) {
- return job_factory_->AddInterceptor(interceptor);
-}
-
net::URLRequestJob*
ProtocolHandlerRegistry::JobInterceptorFactory::MaybeCreateJobWithInterceptor(
net::URLRequest* request, net::NetworkDelegate* network_delegate) const {

Powered by Google App Engine
This is Rietveld 408576698