HomeSort by relevance Sort by last modified time
    Searched refs:template_url (Results 26 - 50 of 65) sorted by null

12 3

  /external/chromium/chrome/browser/instant/
instant_controller.cc 19 #include "chrome/browser/search_engines/template_url.h"
152 const TemplateURL* template_url = NULL; local
160 if (!ShouldShowPreviewFor(match, &template_url)) {
173 TemplateURLID template_url_id = template_url ? template_url->id() : 0;
178 UpdateLoader(template_url, match.destination_url, match.transition,
595 void InstantController::UpdateLoader(const TemplateURL* template_url,
604 TemplateURLID template_url_id = template_url ? template_url->id() : 0;
609 if (new_loader->Update(tab_contents_, template_url, url, transition_type
677 const TemplateURL* template_url = match.template_url; local
    [all...]
instant_controller.h 219 void UpdateLoader(const TemplateURL* template_url,
227 // a TemplateURL that supports the instant API it is set in |template_url|.
229 const TemplateURL** template_url);
instant_loader.h 47 const TemplateURL* template_url,
instant_browsertest.cc 15 #include "chrome/browser/search_engines/template_url.h"
58 TemplateURL* template_url = new TemplateURL(); local
65 template_url->SetURL(url, 0, 0);
66 template_url->SetInstantURL(url, 0, 0);
67 template_url->set_keyword(ASCIIToUTF16("foo"));
68 template_url->set_short_name(ASCIIToUTF16("foo"));
70 model->Add(template_url);
71 model->SetDefaultSearchProvider(template_url);
    [all...]
  /external/chromium/chrome/browser/search_engines/
search_provider_install_data.h 75 void SetDefault(const TemplateURL* template_url);
template_url_model_unittest.cc 16 #include "chrome/browser/search_engines/template_url.h"
128 TemplateURL* template_url = new TemplateURL(); local
129 template_url->SetURL(url, 0, 0);
130 template_url->SetSuggestionsURL(suggest_url, 0, 0);
131 template_url->SetFaviconURL(GURL(favicon_url));
132 template_url->set_keyword(UTF8ToUTF16(keyword));
133 template_url->set_autogenerate_keyword(autogenerate_keyword);
134 template_url->set_short_name(UTF8ToUTF16(short_name));
137 template_url->set_input_encodings(encodings_vector);
138 template_url->set_date_created(created_date)
702 TemplateURL* template_url = new TemplateURL(); local
    [all...]
util.cc 11 #include "chrome/browser/search_engines/template_url.h"
136 const TemplateURL* template_url = i->second; local
137 if ((template_url->safe_for_autoreplace()) &&
138 (template_url != *default_search_provider)) {
141 template_url);
145 service->RemoveKeyword(*template_url);
146 delete template_url;
template_url_parser.cc 16 #include "chrome/browser/search_engines/template_url.h"
139 TemplateURL* template_url() { return url_; } function in class:__anon3412::ParsingContext
294 TemplateURL* turl = context->template_url();
296 std::string template_url; local
311 template_url = XMLCharToString(value);
324 turl->SetURL(template_url, index_offset, page_offset);
329 turl->SetSuggestionsURL(template_url, index_offset, page_offset);
395 TemplateURL* t_url = context->template_url();
479 context->template_url()->set_short_name(context->GetString());
482 context->template_url()->set_description(context->GetString())
    [all...]
template_url_fetcher.cc 12 #include "chrome/browser/search_engines/template_url.h"
295 const TemplateURL* template_url = local
297 if (template_url && (!template_url->safe_for_autoreplace() ||
298 template_url->originating_url() == osdd_url)) {
  /external/chromium/chrome/browser/ui/gtk/
edit_search_engine_dialog.h 25 const TemplateURL* template_url,
  /external/chromium/chrome/browser/ui/search_engines/
keyword_editor_controller.h 37 void ModifyTemplateURL(const TemplateURL* template_url,
edit_search_engine_controller.cc 12 #include "chrome/browser/search_engines/template_url.h"
17 const TemplateURL* template_url,
20 : template_url_(template_url),
  /external/chromium/chrome/browser/ui/webui/options/
search_engine_manager_handler.h 33 virtual void OnEditedKeyword(const TemplateURL* template_url,
  /external/chromium/chrome/browser/importer/
firefox_importer_utils.cc 18 #include "chrome/browser/search_engines/template_url.h"
200 TemplateURL* template_url = new TemplateURL(); local
204 content.length(), &param_filter, template_url) &&
205 template_url->url()) {
206 std::string url = template_url->url()->url();
219 template_url->set_keyword(
221 template_url->set_logo_id(
223 template_url->set_show_in_default_list(true);
224 search_engine_for_url[url] = template_url;
226 default_turl = template_url;
    [all...]
ie_importer.cc 33 #include "chrome/browser/search_engines/template_url.h"
402 TemplateURL* template_url = local
404 if (!template_url) {
406 template_url = new TemplateURL();
407 template_url->set_short_name(name);
408 template_url->SetURL(url, 0, 0);
411 template_url->set_keyword(TemplateURLModel::GenerateKeyword(gurl,
413 template_url->set_logo_id(
415 template_url->set_show_in_default_list(true);
416 search_engines_map[url] = template_url;
    [all...]
  /external/chromium/chrome/browser/ui/
browser_window.h 196 // described by |template_url|. Takes ownership of |template_url|.
199 TemplateURL* template_url,
206 // |template_url|. Takes ownership of |template_url|.
207 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url,
  /external/chromium/chrome/browser/ui/panels/
panel.h 82 TemplateURL* template_url,
84 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url,
panel.cc 198 TemplateURL* template_url,
203 void Panel::ConfirmAddSearchProvider(const TemplateURL* template_url,
  /external/chromium/chrome/browser/extensions/
extension_omnibox_apitest.cc 16 #include "chrome/browser/search_engines/template_url.h"
123 ASSERT_TRUE(match.template_url);
124 EXPECT_TRUE(match.template_url->IsExtensionKeyword());
125 EXPECT_EQ(ASCIIToUTF16("keyword"), match.template_url->keyword());
143 ASSERT_TRUE(result.match_at(0).template_url);
  /external/chromium/chrome/browser/ui/views/
browser_dialogs.h 70 // Shows a dialog box that allows a search engine to be edited. |template_url|
76 const TemplateURL* template_url,
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_browsertest.cc 21 #include "chrome/browser/search_engines/template_url.h"
277 TemplateURL* template_url = new TemplateURL(); local
278 template_url->SetURL(kSearchURL, 0, 0);
279 template_url->set_keyword(UTF8ToUTF16(kSearchKeyword));
280 template_url->set_short_name(UTF8ToUTF16(kSearchShortName));
282 model->Add(template_url);
283 model->SetDefaultSearchProvider(template_url);
867 TemplateURL* template_url = new TemplateURL(); local
    [all...]
autocomplete_match.cc 19 template_url(NULL),
35 template_url(NULL),
autocomplete_match.h 182 const TemplateURL* template_url; member in struct:AutocompleteMatch
autocomplete_edit.cc 29 #include "chrome/browser/search_engines/template_url.h"
504 const TemplateURL* const template_url = local
509 if (template_url && template_url->IsExtensionKeyword()) {
518 size_t prefix_length = match.template_url->keyword().size() + 1;
520 profile_, match.template_url->GetExtensionId(),
526 if (template_url) {
528 template_url_model->IncrementUsageCount(template_url);
532 // search engine, if applicable; see comments in template_url.h.
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
browser_window_cocoa.h 72 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url,

Completed in 580 milliseconds

12 3