HomeSort by relevance Sort by last modified time
    Searched refs:ProtocolHandler (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/chromium_org/net/url_request/
url_request_job_factory.cc 9 URLRequestJobFactory::ProtocolHandler::~ProtocolHandler() {}
11 bool URLRequestJobFactory::ProtocolHandler::IsSafeRedirectTarget(
protocol_intercept_job_factory.h 30 scoped_ptr<ProtocolHandler> protocol_handler);
44 scoped_ptr<ProtocolHandler> protocol_handler_;
url_request_job_factory.h 27 class NET_EXPORT ProtocolHandler {
29 virtual ~ProtocolHandler();
url_request_job_factory_impl.h 23 // Sets the ProtocolHandler for a scheme. Returns true on success, false on
24 // failure (a ProtocolHandler already exists for |scheme|). On success,
27 ProtocolHandler* protocol_handler);
39 typedef std::map<std::string, ProtocolHandler*> ProtocolHandlerMap;
data_protocol_handler.h 16 // Implements a ProtocolHandler for Data jobs.
18 : public URLRequestJobFactory::ProtocolHandler {
ftp_protocol_handler.h 20 // Implements a ProtocolHandler for FTP.
22 public URLRequestJobFactory::ProtocolHandler {
  /external/chromium_org/android_webview/native/
net_init_native_callback.cc 14 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
19 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
android_protocol_handler.h 24 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
31 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
  /external/chromium_org/chrome/browser/extensions/
extension_resource_protocols.h 11 net::URLRequestJobFactory::ProtocolHandler*
extension_protocols.h 15 net::URLRequestJobFactory::ProtocolHandler* CreateExtensionProtocolHandler(
  /external/chromium_org/chrome/common/custom_handlers/
protocol_handler.h 16 class ProtocolHandler {
18 static ProtocolHandler CreateProtocolHandler(const std::string& protocol,
22 // Creates a ProtocolHandler with fields from the dictionary. Returns an
23 // empty ProtocolHandler if the input is invalid.
24 static ProtocolHandler CreateProtocolHandler(
28 // define a ProtocolHandler.
32 bool IsSameOrigin(const ProtocolHandler& handler) const;
34 // Canonical empty ProtocolHandler.
35 static const ProtocolHandler& EmptyProtocolHandler();
43 bool IsEquivalent(const ProtocolHandler& other) const
    [all...]
protocol_handler.cc 12 ProtocolHandler::ProtocolHandler(const std::string& protocol,
20 ProtocolHandler ProtocolHandler::CreateProtocolHandler(
25 return ProtocolHandler(lower_protocol, url, title);
28 ProtocolHandler::ProtocolHandler() {
31 bool ProtocolHandler::IsValidDict(const base::DictionaryValue* value) {
36 bool ProtocolHandler::IsSameOrigin(
37 const ProtocolHandler& handler) const
    [all...]
  /external/chromium/chrome/browser/custom_handlers/
protocol_handler.cc 10 ProtocolHandler::ProtocolHandler(const std::string& protocol,
18 ProtocolHandler* ProtocolHandler::CreateProtocolHandler(
24 return new ProtocolHandler(lower_protocol, url, title);
27 ProtocolHandler* ProtocolHandler::CreateProtocolHandler(
34 return ProtocolHandler::CreateProtocolHandler(protocol, GURL(url), title);
37 GURL ProtocolHandler::TranslateUrl(const GURL& url) {
44 Value* ProtocolHandler::Encode()
    [all...]
protocol_handler.h 17 class ProtocolHandler {
19 static ProtocolHandler* CreateProtocolHandler(const std::string& protocol,
22 static ProtocolHandler* CreateProtocolHandler(const DictionaryValue* value);
35 bool operator==(const ProtocolHandler &other) const;
38 ProtocolHandler(const std::string& protocol,
protocol_handler_registry.h 34 void OnAcceptRegisterProtocolHandler(ProtocolHandler* handler);
37 void OnDenyRegisterProtocolHandler(ProtocolHandler* handler);
46 ProtocolHandler* GetHandlerFor(const std::string& scheme) const;
53 bool IsAlreadyRegistered(const ProtocolHandler* handler) const;
68 typedef std::map<std::string, ProtocolHandler*> ProtocolHandlerMap;
78 void RegisterProtocolHandler(ProtocolHandler* handler);
register_protocol_handler_infobar_delegate.h 13 class ProtocolHandler;
23 ProtocolHandler* handler);
40 ProtocolHandler* handler_;
protocol_handler_registry.cc 23 ProtocolHandler* handler) {
53 ProtocolHandler* handler = ProtocolHandler::CreateProtocolHandler(value);
65 ProtocolHandler* ProtocolHandlerRegistry::GetHandlerFor(
78 const ProtocolHandler* handler) const {
79 ProtocolHandler* currentHandler = GetHandlerFor(handler->protocol());
92 ProtocolHandler* handler = GetHandlerFor(request->url().scheme());
120 ProtocolHandler* handler) {
126 ProtocolHandler* handler) {
  /external/chromium_org/webkit/browser/fileapi/
file_system_url_request_job_factory.h 20 // |context|'s lifetime should exceed the lifetime of the ProtocolHandler.
22 // ProtocolHandler.
23 WEBKIT_STORAGE_BROWSER_EXPORT net::URLRequestJobFactory::ProtocolHandler*
  /external/chromium_org/chrome/browser/custom_handlers/
protocol_handler_registry.h 130 typedef std::map<std::string, ProtocolHandler> ProtocolHandlerMap;
131 typedef std::vector<ProtocolHandler> ProtocolHandlerList;
147 bool SilentlyHandleRegisterHandlerRequest(const ProtocolHandler& handler);
150 void OnAcceptRegisterProtocolHandler(const ProtocolHandler& handler);
153 void OnDenyRegisterProtocolHandler(const ProtocolHandler& handler);
157 void OnIgnoreRegisterProtocolHandler(const ProtocolHandler& handler);
162 bool AttemptReplace(const ProtocolHandler& handler);
166 ProtocolHandlerList GetReplacedHandlers(const ProtocolHandler& handler) const;
172 bool IsDefault(const ProtocolHandler& handler) const;
198 bool IsRegistered(const ProtocolHandler& handler) const
    [all...]
register_protocol_handler_infobar_delegate.h 25 const ProtocolHandler& handler);
29 const ProtocolHandler& handler);
46 base::string16 GetProtocolName(const ProtocolHandler& handler) const;
49 ProtocolHandler handler_;
protocol_handler_registry_unittest.cc 321 const ProtocolHandler& test_protocol_handler() const {
325 ProtocolHandler CreateProtocolHandler(const std::string& protocol,
328 return ProtocolHandler::CreateProtocolHandler(protocol, url,
332 ProtocolHandler CreateProtocolHandler(const std::string& protocol,
379 ProtocolHandler test_protocol_handler_;
454 ProtocolHandler ph1 = CreateProtocolHandler("test", GURL("http://test/%s"),
456 ProtocolHandler ph2 = CreateProtocolHandler("test", GURL("http://test/%s"),
469 ProtocolHandler stuff_protocol_handler(
508 ProtocolHandler ph1 = CreateProtocolHandler("test", "test1");
509 ProtocolHandler ph2 = CreateProtocolHandler("test", "test2")
    [all...]
  /external/chromium_org/android_webview/browser/net/
init_native_callback.h 24 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
28 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
  /external/chromium_org/content/test/net/
url_request_mock_http_job.cc 27 class ProtocolHandler : public net::URLRequestJobFactory::ProtocolHandler {
33 explicit ProtocolHandler(const base::FilePath& base_path,
37 virtual ~ProtocolHandler() {}
39 // net::URLRequestJobFactory::ProtocolHandler implementation
63 DISALLOW_COPY_AND_ASSIGN(ProtocolHandler);
105 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
107 return scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>(
108 new ProtocolHandler(base_path, false));
112 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_protocol_handler.h 18 class DriveProtocolHandler : public net::URLRequestJobFactory::ProtocolHandler {
  /external/chromium_org/chrome/browser/net/
about_protocol_handler.h 14 // Implements a ProtocolHandler for About jobs.
15 class AboutProtocolHandler : public net::URLRequestJobFactory::ProtocolHandler {

Completed in 198 milliseconds

1 2 3