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 16 const char URLPattern::kAllUrlsPattern[] = "<all_urls>";
33 URLPattern::SCHEME_HTTP,
34 URLPattern::SCHEME_HTTPS,
35 URLPattern::SCHEME_FILE,
36 URLPattern::SCHEME_FTP,
37 URLPattern::SCHEME_CHROMEUI,
38 URLPattern::SCHEME_EXTENSION,
39 URLPattern::SCHEME_FILESYSTEM,
55 // Message explaining each URLPattern::ParseResult.
68 COMPILE_ASSERT(URLPattern::NUM_PARSE_RESULTS == arraysize(kParseResultMessages)
    [all...]
url_pattern.h 13 // A pattern that can be used to match URLs. A URLPattern is a very restricted
43 class URLPattern {
85 explicit URLPattern(int valid_schemes);
87 // Convenience to construct a URLPattern from a string. If the string is not
89 URLPattern(int valid_schemes, const std::string& pattern);
91 URLPattern();
92 ~URLPattern();
94 bool operator<(const URLPattern& other) const;
95 bool operator>(const URLPattern& other) const;
96 bool operator==(const URLPattern& other) const
    [all...]

Completed in 321 milliseconds