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

  /external/chromium_org/extensions/common/
url_pattern.cc 20 const char URLPattern::kAllUrlsPattern[] = "<all_urls>";
37 URLPattern::SCHEME_HTTP,
38 URLPattern::SCHEME_HTTPS,
39 URLPattern::SCHEME_FILE,
40 URLPattern::SCHEME_FTP,
41 URLPattern::SCHEME_CHROMEUI,
42 URLPattern::SCHEME_EXTENSION,
43 URLPattern::SCHEME_FILESYSTEM,
59 // Message explaining each URLPattern::ParseResult.
72 COMPILE_ASSERT(URLPattern::NUM_PARSE_RESULTS == arraysize(kParseResultMessages)
    [all...]
url_pattern.h 14 // A pattern that can be used to match URLs. A URLPattern is a very restricted
44 class URLPattern {
86 explicit URLPattern(int valid_schemes);
88 // Convenience to construct a URLPattern from a string. If the string is not
90 URLPattern(int valid_schemes, const std::string& pattern);
92 URLPattern();
93 ~URLPattern();
95 bool operator<(const URLPattern& other) const;
96 bool operator>(const URLPattern& other) const;
97 bool operator==(const URLPattern& other) const
    [all...]

Completed in 412 milliseconds