| Index: chrome/browser/ui/search_engines/template_url_table_model.cc
|
| diff --git a/chrome/browser/ui/search_engines/template_url_table_model.cc b/chrome/browser/ui/search_engines/template_url_table_model.cc
|
| index 662c910cb0bc0adffbb1c2e56334ce85a26b3abd..280f386e47eb282443a1d4cc7a5d6a06a79dc28a 100644
|
| --- a/chrome/browser/ui/search_engines/template_url_table_model.cc
|
| +++ b/chrome/browser/ui/search_engines/template_url_table_model.cc
|
| @@ -32,7 +32,7 @@ static const int kOtherGroupID = 1;
|
| // ModelEntry also tracks state information about the URL.
|
|
|
| // Icon used while loading, or if a specific favicon can't be found.
|
| -static SkBitmap* default_icon = NULL;
|
| +static gfx::ImageSkia* default_icon = NULL;
|
|
|
| class ModelEntry {
|
| public:
|
| @@ -42,7 +42,7 @@ class ModelEntry {
|
| model_(model) {
|
| if (!default_icon) {
|
| default_icon = ResourceBundle::GetSharedInstance().
|
| - GetBitmapNamed(IDR_DEFAULT_FAVICON);
|
| + GetImageSkiaNamed(IDR_DEFAULT_FAVICON);
|
| }
|
| }
|
|
|
|
|