/external/chromium/chrome/browser/search_engines/ |
template_url_fetcher_callbacks.h | 10 class TemplateURL; 22 TemplateURL* template_url, 28 TemplateURL* template_url,
|
search_host_to_urls_map.h | 17 class TemplateURL; 24 typedef std::set<const TemplateURL*> TemplateURLSet; 30 void Init(const std::vector<const TemplateURL*>& template_urls, 33 // Adds a new TemplateURL to the map. Since |template_url| is owned 35 void Add(const TemplateURL* template_url, 38 // Removes the TemplateURL from the lookup. 39 void Remove(const TemplateURL* template_url); 41 // Updates information in an existing TemplateURL. Note: Using Remove and 44 void Update(const TemplateURL* existing_turl, 45 const TemplateURL& new_values [all...] |
template_url_prepopulate_data.h | 13 class TemplateURL; 29 std::vector<TemplateURL*>* t_urls, 34 TemplateURL* GetPrepopulatedDefaultSearch(PrefService* prefs); 36 // Returns a TemplateURL from the prepopulated data which has the same origin 38 // TemplateURL. 39 TemplateURL* GetEngineForOrigin(PrefService* prefs, const GURL& url_to_find);
|
util.h | 16 class TemplateURL; 27 // TemplateURL* returned in template_urls. 39 std::vector<TemplateURL*>* template_urls, 40 const TemplateURL** default_search_provider,
|
template_url_model.h | 54 // TemplateURLModel takes ownership of any TemplateURL passed to it. If there 62 typedef std::vector<const TemplateURL*> TemplateURLVector; 65 // Each initializer is mapped to a TemplateURL. 90 static GURL GenerateSearchURL(const TemplateURL* t_url); 96 const TemplateURL* t_url, 99 // Returns true if there is no TemplateURL that conflicts with the 105 // a TemplateURL for an existing TemplateURL that shares the same host. 108 const TemplateURL** template_url_to_replace); 121 const TemplateURL* GetTemplateURLForKeyword(const string16& keyword) const [all...] |
template_url_parser.h | 13 class TemplateURL; 29 // Decodes the chunk of data representing a TemplateURL. If data does 30 // not describe a valid TemplateURL false is returned. Additionally, if the 37 // NOTE: This does not clear all values of the supplied TemplateURL; it's 38 // expected callers will supply a new TemplateURL to this method. 42 TemplateURL* url);
|
/external/chromium_org/chrome/browser/search_engines/ |
template_url_fetcher_callbacks.h | 9 class TemplateURL; 19 virtual void ConfirmAddSearchProvider(TemplateURL* template_url,
|
template_url_service.h | 60 // TemplateURLService takes ownership of any TemplateURL passed to it. If there 70 typedef std::vector<TemplateURL*> TemplateURLVector; 77 // Each initializer is mapped to a TemplateURL. 114 static GURL GenerateSearchURL(TemplateURL* t_url); 121 const TemplateURL* t_url, 124 // Returns true if there is no TemplateURL that conflicts with the 130 // a TemplateURL for an existing TemplateURL that shares the same host. 133 TemplateURL** template_url_to_replace); 146 TemplateURL* GetTemplateURLForKeyword(const base::string16& keyword) [all...] |
util.h | 18 class TemplateURL; 32 TemplateURL* FindURLByPrepopulateID( 39 const TemplateURL* original_turl); 57 typedef std::pair<TemplateURL*, TemplateURLData> EditedSearchEngine; 76 ScopedVector<TemplateURL>* prepopulated_urls, 78 const TemplateURL* default_search_provider); 83 // TemplateURL* returned in template_urls. 98 TemplateURL** default_search_provider, 113 TemplateURL** default_search_provider, 129 const ScopedVector<TemplateURL>& prepopulated_urls [all...] |
template_url_parser.h | 13 class TemplateURL; 30 // Decodes the chunk of data representing a TemplateURL, creates the 31 // TemplateURL, and returns it. The caller owns the returned object. 33 // thread. Returns NULL if data does not describe a valid TemplateURL, the 35 // other reason we do not support the described TemplateURL. 40 static TemplateURL* Parse(Profile* profile,
|
search_host_to_urls_map.h | 20 typedef std::set<TemplateURL*> TemplateURLSet; 29 // Adds a new TemplateURL to the map. Since |template_url| is owned 31 void Add(TemplateURL* template_url, 34 // Removes the TemplateURL from the lookup. 35 void Remove(TemplateURL* template_url, 38 // Returns the first TemplateURL found with a URL using the specified |host|, 40 TemplateURL* GetTemplateURLForHost(const std::string& host); 58 void RemoveByPointer(TemplateURL* template_url);
|
template_url_prepopulate_data.h | 19 class TemplateURL; 51 ScopedVector<TemplateURL> GetPrepopulatedEngines( 61 TemplateURL* GetPrepopulatedDefaultSearch(Profile* profile); 69 SearchEngineType GetEngineType(const TemplateURL& template_url); 79 GURL GetLogoURL(const TemplateURL& template_url, LogoSize size);
|
/external/chromium_org/chrome/browser/ui/search_engines/ |
search_engine_tab_helper_delegate.h | 9 class TemplateURL; 21 virtual void ConfirmAddSearchProvider(TemplateURL* template_url,
|
keyword_editor_controller.h | 16 class TemplateURL; 34 // Invoked when the user modifies a TemplateURL. Updates the 36 void ModifyTemplateURL(TemplateURL* template_url, 42 bool CanEdit(const TemplateURL* url) const; 45 bool CanMakeDefault(const TemplateURL* url) const; 48 bool CanRemove(const TemplateURL* url) const; 50 // Remove the TemplateURL at the specified index in the TableModel. 53 // Make the TemplateURL at the specified index (into the TableModel) the 60 // Return the TemplateURL corresponding to the |index| in the model. 61 TemplateURL* GetTemplateURL(int index) [all...] |
edit_search_engine_controller.h | 14 class TemplateURL; 21 // indicates a new TemplateURL should be created rather than modifying an 22 // existing TemplateURL. 23 virtual void OnEditedKeyword(TemplateURL* template_url, 38 TemplateURL* template_url, 62 // Deletes an unused TemplateURL, if its add was cancelled and it's not 67 const TemplateURL* template_url() const { return template_url_; } 72 // suitable for use by TemplateURL. 75 // The TemplateURL we're displaying information for. It may be NULL. If we 76 // have a keyword_editor_view, we assume that this TemplateURL is already i [all...] |
/external/chromium/chrome/browser/ui/search_engines/ |
search_engine_tab_helper_delegate.h | 11 class TemplateURL; 22 TemplateURL* template_url, 27 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url,
|
keyword_editor_controller.h | 17 class TemplateURL; 35 // Invoked when the user modifies a TemplateURL. Updates the TemplateURLModel 37 void ModifyTemplateURL(const TemplateURL* template_url, 43 bool CanEdit(const TemplateURL* url) const; 46 bool CanMakeDefault(const TemplateURL* url) const; 49 bool CanRemove(const TemplateURL* url) const; 51 // Remove the TemplateURL at the specified index in the TableModel. 54 // Make the TemplateURL at the specified index (into the TableModel) the 61 // Return the TemplateURL corresponding to the |index| in the model. 62 const TemplateURL* GetTemplateURL(int index) const [all...] |
edit_search_engine_controller.h | 15 class TemplateURL; 22 // indicates a new TemplateURL should be created rather than modifying an 23 // existing TemplateURL. 24 virtual void OnEditedKeyword(const TemplateURL* template_url, 39 const TemplateURL* template_url, 63 // Deletes an unused TemplateURL, if its add was cancelled and it's not 68 const TemplateURL* template_url() const { return template_url_; } 73 // suitable for use by TemplateURL. 76 // The TemplateURL we're displaying information for. It may be NULL. If we 77 // have a keyword_editor_view, we assume that this TemplateURL is already i [all...] |
template_url_fetcher_ui_callbacks.cc | 30 TemplateURL* template_url, 32 scoped_ptr<TemplateURL> owned_template_url(template_url); 43 TemplateURL* template_url, 45 scoped_ptr<TemplateURL> owned_template_url(template_url);
|
template_url_fetcher_ui_callbacks.h | 27 TemplateURL* template_url, 30 TemplateURL* template_url,
|
/external/chromium/chrome/browser/webdata/ |
keyword_table.h | 15 class TemplateURL; 27 // TemplateURL. See TemplateURL for more details. 43 // prepopulate_id See TemplateURL::prepopulate_id. 45 // logo_id See TemplateURL::logo_id 46 // created_by_policy See TemplateURL::created_by_policy. This was added 48 // instant_url See TemplateURL::instant_url. This was added 61 bool AddKeyword(const TemplateURL& url); 70 bool GetKeywords(std::vector<TemplateURL*>* urls); 74 bool UpdateKeyword(const TemplateURL& url) [all...] |
/external/chromium_org/chrome/browser/ui/views/ |
browser_dialogs.h | 22 class TemplateURL; 35 TemplateURL* template_url,
|
/external/chromium/chrome/browser/ui/views/ |
default_search_view.h | 21 class TemplateURL; 44 TemplateURL* , 67 TemplateURL* proposed_default_turl, 83 scoped_ptr<TemplateURL> proposed_turl_;
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
search_engines_helper.h | 14 class TemplateURL; 17 typedef std::map<std::string, const TemplateURL*> GUIDToTURLMap; 34 // Create a TemplateURL with some test values based on |seed|. The caller owns 35 // the returned TemplateURL*. 36 TemplateURL* CreateTestTemplateURL(Profile* profile, 40 TemplateURL* CreateTestTemplateURL(Profile* profile,
|
/external/chromium_org/chrome/browser/ui/omnibox/ |
omnibox_current_page_delegate.h | 13 class TemplateURL; 53 virtual bool ProcessExtensionKeyword(TemplateURL* template_url,
|