// Copyright (c) 2013 GitHub, Inc. All rights reserved. // Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ATOM_BROWSER_NET_ATOM_URL_REQUEST_URL_REQUEST_JOB_FACTORY_H_ #define ATOM_BROWSER_NET_ATOM_URL_REQUEST_URL_REQUEST_JOB_FACTORY_H_ #include #include #include "base/basictypes.h" #include "base/compiler_specific.h" #include "net/url_request/url_request_job_factory.h" namespace atom { class AtomURLRequestJobFactory : public net::URLRequestJobFactory { public: AtomURLRequestJobFactory(); virtual ~AtomURLRequestJobFactory(); // 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); // URLRequestJobFactory implementation virtual net::URLRequestJob* MaybeCreateJobWithProtocolHandler( const std::string& scheme, net::URLRequest* request, net::NetworkDelegate* network_delegate) const OVERRIDE; virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE; virtual bool IsHandledURL(const GURL& url) const OVERRIDE; private: typedef std::map ProtocolHandlerMap; ProtocolHandlerMap protocol_handler_map_; DISALLOW_COPY_AND_ASSIGN(AtomURLRequestJobFactory); }; } // namespace atom #endif // ATOM_BROWSER_NET_ATOM_URL_REQUEST_URL_REQUEST_JOB_FACTORY_H_