Chromium Code Reviews| Index: chrome/browser/search_engines/template_url_prepopulate_data.h |
| diff --git a/chrome/browser/search_engines/template_url_prepopulate_data.h b/chrome/browser/search_engines/template_url_prepopulate_data.h |
| index 4d676fb6fe841c313695f930bd56e1f9baf00ef7..e506bfc884b5f8e89d76a1da755b65c3dee449eb 100644 |
| --- a/chrome/browser/search_engines/template_url_prepopulate_data.h |
| +++ b/chrome/browser/search_engines/template_url_prepopulate_data.h |
| @@ -57,6 +57,13 @@ TemplateURL* GetPrepopulatedDefaultSearch(Profile* profile); |
| // NOTE: Must be called on the UI thread. |
| SearchEngineType GetEngineType(const std::string& url); |
| +// Returns the logo (at the specified resolution) for |url|. If no logo is |
| +// known, this may return an empty GURL. |
| +// |
| +// NOTE: Must be called on the UI thread. |
| +GURL GetLogoURL(const std::string& url); |
|
msw
2012/08/27 21:57:26
Make these args const TemplateURL& (or pointers) i
Peter Kasting
2012/08/28 00:04:07
Nit: I suggest one function that takes a second ar
samarth
2012/08/28 16:18:15
Done.
samarth
2012/08/28 16:18:15
Done.
|
| +GURL GetLogo200PercentURL(const std::string& url); |
| + |
| } // namespace TemplateURLPrepopulateData |
| #endif // CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_PREPOPULATE_DATA_H_ |