| Index: chrome/browser/themes/theme_service.cc
|
| diff --git a/chrome/browser/themes/theme_service.cc b/chrome/browser/themes/theme_service.cc
|
| index 5a18c2e8a5438f4c1443b400b63d56acf9b51ba0..9d8392f007ed989d9ba56f1fd549324582f9789a 100644
|
| --- a/chrome/browser/themes/theme_service.cc
|
| +++ b/chrome/browser/themes/theme_service.cc
|
| @@ -588,9 +588,12 @@ base::RefCountedMemory* ThemeService::GetRawData(
|
| int id,
|
| ui::ScaleFactor scale_factor) const {
|
| // Check to see whether we should substitute some images.
|
| - int ntp_alternate = GetDisplayProperty(ThemeProperties::NTP_LOGO_ALTERNATE);
|
| - if (id == IDR_PRODUCT_LOGO && ntp_alternate != 0)
|
| - id = IDR_PRODUCT_LOGO_WHITE;
|
| + // TODO(fsamuel): Figure out why removing these resources on Android fixes
|
| + // loading.
|
| + // int ntp_alternate =
|
| + // GetDisplayProperty(ThemeProperties::NTP_LOGO_ALTERNATE);
|
| + // if (id == IDR_PRODUCT_LOGO && ntp_alternate != 0)
|
| + // id = IDR_PRODUCT_LOGO_WHITE;
|
|
|
| base::RefCountedMemory* data = nullptr;
|
| if (theme_supplier_)
|
|
|