Home | History | Annotate | Download | only in search_engines

Lines Matching refs:template_url

8 #include "chrome/browser/search_engines/template_url.h"
26 void SearchHostToURLsMap::Add(TemplateURL* template_url,
29 DCHECK(template_url);
32 template_url, search_terms_data));
36 host_to_urls_map_[url.host()].insert(template_url);
39 void SearchHostToURLsMap::Remove(TemplateURL* template_url,
42 DCHECK(template_url);
45 template_url, search_terms_data));
53 DCHECK(urls.find(template_url) != urls.end());
55 urls.erase(urls.find(template_url));
88 void SearchHostToURLsMap::RemoveByPointer(TemplateURL* template_url) {
91 TemplateURLSet::iterator url_set_iterator = i->second.find(template_url);