HomeSort by relevance Sort by last modified time
    Searched defs:ProtocolHandler (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/net/url_request/
url_request_job_factory.h 27 class NET_EXPORT ProtocolHandler {
29 virtual ~ProtocolHandler();
url_request_job_factory.cc 9 URLRequestJobFactory::ProtocolHandler::~ProtocolHandler() {}
11 bool URLRequestJobFactory::ProtocolHandler::IsSafeRedirectTarget(
  /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,
  /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_org/content/test/net/
url_request_mock_http_job.cc 25 class ProtocolHandler : public net::URLRequestJobFactory::ProtocolHandler {
31 explicit ProtocolHandler(const base::FilePath& base_path,
35 virtual ~ProtocolHandler() {}
37 // net::URLRequestJobFactory::ProtocolHandler implementation
61 DISALLOW_COPY_AND_ASSIGN(ProtocolHandler);
80 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>(
81 new ProtocolHandler(file_path, true)));
105 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
107 return scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>(
    [all...]

Completed in 1184 milliseconds