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

  /external/chromium/chrome/common/extensions/
url_pattern.cc 14 const char URLPattern::kAllUrlsPattern[] = "<all_urls>";
31 URLPattern::SCHEME_HTTP,
32 URLPattern::SCHEME_HTTPS,
33 URLPattern::SCHEME_FILE,
34 URLPattern::SCHEME_FTP,
35 URLPattern::SCHEME_CHROMEUI,
36 URLPattern::SCHEME_FILESYSTEM,
52 // Message explaining each URLPattern::ParseResult.
64 COMPILE_ASSERT(URLPattern::NUM_PARSE_RESULTS == arraysize(kParseResultMessages),
80 URLPattern::URLPattern(
    [all...]
url_pattern.h 14 // A pattern that can be used to match URLs. A URLPattern is a very restricted
44 // * We need to be able to tell users what 'sites' a given URLPattern will
74 // patterns to URLPattern, but the resulting pattern will be more restrictive
76 class URLPattern {
95 // Options for URLPattern::Parse().
117 // Construct an URLPattern with the given set of allowable schemes. See
119 explicit URLPattern(int valid_schemes);
121 // Convenience to construct a URLPattern from a string. The string is expected
124 URLPattern(int valid_schemes, const std::string& pattern);
127 // Note: don't use this directly. This exists so URLPattern can be use
    [all...]

Completed in 71 milliseconds