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

  /external/chromium_org/chrome/browser/autocomplete/
url_prefix.cc 11 URLPrefix::URLPrefix(const string16& prefix, size_t num_components)
17 const URLPrefixes& URLPrefix::GetURLPrefixes() {
20 prefixes.push_back(URLPrefix(ASCIIToUTF16("https://www."), 2));
21 prefixes.push_back(URLPrefix(ASCIIToUTF16("http://www."), 2));
22 prefixes.push_back(URLPrefix(ASCIIToUTF16("ftp://ftp."), 2));
23 prefixes.push_back(URLPrefix(ASCIIToUTF16("ftp://www."), 2));
24 prefixes.push_back(URLPrefix(ASCIIToUTF16("https://"), 1));
25 prefixes.push_back(URLPrefix(ASCIIToUTF16("http://"), 1));
26 prefixes.push_back(URLPrefix(ASCIIToUTF16("ftp://"), 1))
    [all...]
url_prefix.h 12 struct URLPrefix;
13 typedef std::vector<URLPrefix> URLPrefixes;
17 struct URLPrefix {
18 URLPrefix(const string16& prefix, size_t num_components);
30 static const URLPrefix* BestURLPrefix(const string16& text,

Completed in 174 milliseconds