HomeSort by relevance Sort by last modified time
    Searched refs:TemplateURLModel (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/chromium/chrome/browser/search_engines/
template_url_fetcher_callbacks.h 11 class TemplateURLModel;
23 TemplateURLModel* template_url_model) = 0;
template_url_scraper_unittest.cc 29 explicit TemplateURLModelLoader(TemplateURLModel* model) : model_(model) {
31 Source<TemplateURLModel>(model));
40 Source<TemplateURLModel>(source).ptr() == model_) {
48 TemplateURLModel* model_;
59 TemplateURLModel* template_urls = browser()->profile()->GetTemplateURLModel();
template_url_model_test_util.h 19 class TemplateURLModel;
25 // Implements functionality to make it easier to test TemplateURLModel and
69 // Creates a new TemplateURLModel.
73 // TemplateURLModel::SetKeywordSearchTermsForURL and clears the search term.
82 // Returns the TemplateURLModel.
83 TemplateURLModel* model() const;
template_url_model.cc 75 class TemplateURLModel::LessWithPrefix {
97 TemplateURLModel::TemplateURLModel(Profile* profile)
109 TemplateURLModel::TemplateURLModel(const Initializer* initializers,
122 TemplateURLModel::~TemplateURLModel() {
132 string16 TemplateURLModel::GenerateKeyword(const GURL& url,
154 string16 TemplateURLModel::CleanUserInputKeyword(const string16& keyword) {
187 GURL TemplateURLModel::GenerateSearchURL(const TemplateURL* t_url)
    [all...]
template_url_fetcher.cc 42 // the TemplateURLModel.
92 TemplateURLModel* model = fetcher_->profile()->GetTemplateURLModel();
99 Source<TemplateURLModel>(model));
148 TemplateURLModel* model = fetcher_->profile()->GetTemplateURLModel();
163 string16 new_keyword = TemplateURLModel::GenerateKeyword(
168 TemplateURLModel* model = fetcher_->profile()->GetTemplateURLModel();
284 TemplateURLModel* url_model = profile()->GetTemplateURLModel();
template_url_model.h 37 // TemplateURLModel is the backend for keywords. It's used by
40 // TemplateURLModel stores a vector of TemplateURLs. The TemplateURLs are
42 // to the TemplateURLs must funnel through TemplateURLModel. This allows
43 // TemplateURLModel to notify listeners of changes as well as keep the
46 // There is a TemplateURLModel per Profile.
48 // TemplateURLModel does not load the vector of TemplateURLs in its
50 // When TemplateURLModel has completed loading, observers are notified via
54 // TemplateURLModel takes ownership of any TemplateURL passed to it. If there
56 // TemplateURLModel handles deletion.
58 class TemplateURLModel : public WebDataServiceConsumer
    [all...]
template_url_model_test_util.cc 80 // Trivial subclass of TemplateURLModel that records the last invocation of
82 class TestingTemplateURLModel : public TemplateURLModel {
85 : TemplateURLModel(profile) {
230 TemplateURLModel* TemplateURLModelTestUtil::model() const {
template_url_model_unittest.cc 280 TemplateURLModel* model() { return test_util_.model(); }
312 TemplateURLModel::GenerateSearchURLUsingTermsData(
314 TemplateURLModel::GenerateSearchURL(&t_url).spec();
447 ASSERT_EQ(string16(), TemplateURLModel::GenerateKeyword(GURL(), true));
450 TemplateURLModel::GenerateKeyword(GURL("https://blah"), true));
452 TemplateURLModel::GenerateKeyword(GURL("http://foo"), true));
455 TemplateURLModel::GenerateKeyword(GURL("http://www.foo"), true));
458 TemplateURLModel::GenerateKeyword(GURL("http://blah/foo"), true));
460 TemplateURLModel::GenerateKeyword(GURL("http://blah/foo"), false));
463 TemplateURLModel::GenerateKeyword(GURL("ftp://blah/"), true))
    [all...]
  /external/chromium/chrome/browser/ui/search_engines/
search_engine_tab_helper_delegate.h 12 class TemplateURLModel;
23 TemplateURLModel* template_url_model) = 0;
template_url_table_model.h 20 class TemplateURLModel;
36 explicit TemplateURLTableModel(TemplateURLModel* template_url_model);
40 // Reloads the entries from the TemplateURLModel. This should ONLY be invoked
41 // if the TemplateURLModel wasn't initially loaded and has been loaded.
87 TemplateURLModel* template_url_model() const { return template_url_model_; }
107 TemplateURLModel* template_url_model_;
keyword_editor_controller.h 18 class TemplateURLModel;
29 // Propagates the change to the TemplateURLModel and updates the table model.
35 // Invoked when the user modifies a TemplateURL. Updates the TemplateURLModel
68 TemplateURLModel* url_model() const;
template_url_fetcher_ui_callbacks.h 28 TemplateURLModel* template_url_model);
template_url_fetcher_ui_callbacks.cc 31 TemplateURLModel* template_url_model) {
search_engine_tab_helper.cc 112 string16 keyword = TemplateURLModel::GenerateKeyword(
153 TemplateURLModel::GenerateKeyword(keyword_url, true); // autodetected
157 TemplateURLModel* url_model =
  /external/chromium/chrome/browser/ui/views/
default_search_view.h 22 class TemplateURLModel;
45 TemplateURLModel* template_url_model);
68 TemplateURLModel* template_url_model);
85 TemplateURLModel* template_url_model_;
first_run_search_engine_view.h 27 class TemplateURLModel;
122 TemplateURLModel* search_engines_model_;
edit_search_engine_dialog.h 29 class TemplateURLModel;
  /external/chromium/chrome/browser/ui/cocoa/
search_engine_dialog_controller.h 16 class TemplateURLModel;
28 TemplateURLModel* searchEnginesModel_;
  /external/chromium/chrome/browser/autocomplete/
keyword_provider.h 9 // KeywordProvider uses a TemplateURLModel to find the set of keywords.
27 class TemplateURLModel;
56 KeywordProvider(ACProviderListener* listener, TemplateURLModel* model);
88 // TemplateURLModel::CleanUserInputKeyword to remove unnecessary characters.
125 TemplateURLModel* model,
141 // TemplateURLModel from the Profile is used.
142 TemplateURLModel* model_;
extension_app_provider.h 29 class TemplateURLModel;
keyword_provider_unittest.cc 38 scoped_ptr<TemplateURLModel> model_;
42 static const TemplateURLModel::Initializer kTestKeywordData[] = {
52 model_.reset(new TemplateURLModel(kTestKeywordData,
keyword_provider.cc 75 TemplateURLModel* model)
120 TemplateURLModel* model = profile->GetTemplateURLModel();
163 TemplateURLModel* model = profile_ ? profile_->GetTemplateURLModel() : model_;
283 *keyword = TemplateURLModel::CleanUserInputKeyword(
383 TemplateURLModel* model,
451 TemplateURLModel* model = profile_ ? profile_->GetTemplateURLModel() : model_;
  /external/chromium/chrome/browser/ui/gtk/
first_run_dialog.h 17 class TemplateURLModel;
66 TemplateURLModel* search_engines_model_;
  /external/chromium/chrome/browser/ui/webui/options/
browser_options_handler.h 19 class TemplateURLModel;
114 TemplateURLModel* template_url_model_; // Weak.
118 // TemplateURLModel.
  /external/chromium/chrome/browser/ui/
browser_window.h 26 class TemplateURLModel;
200 TemplateURLModel* template_url_model) {

Completed in 793 milliseconds

1 2 3