Home | History | Annotate | Download | only in search_engines

Lines Matching refs:template_url

15 #include "chrome/browser/search_engines/template_url.h"
43 ModelEntry(TemplateURLTableModel* model, TemplateURL* template_url)
44 : template_url_(template_url),
53 TemplateURL* template_url() {
86 GURL favicon_url = template_url()->favicon_url();
151 TemplateURL* template_url = *i;
154 if (template_url->show_in_default_list())
155 default_entries.push_back(new ModelEntry(this, template_url));
156 else if (template_url->IsExtensionKeyword())
157 extension_entries.push_back(new ModelEntry(this, template_url));
159 other_entries.push_back(new ModelEntry(this, template_url));
188 const TemplateURL* url = entries_[row]->template_url();
253 TemplateURL* template_url = GetTemplateURL(index);
259 template_url_service_->Remove(template_url);
287 TemplateURL* template_url = GetTemplateURL(index);
289 DCHECK(template_url_service_->GetDefaultSearchProvider() != template_url ||
290 template_url->SupportsReplacement());
292 template_url_service_->ResetTemplateURL(template_url, title, keyword, url);
306 return entries_[index]->template_url();
310 const TemplateURL* template_url) {
314 if (entry->template_url() == template_url)