Index: chrome/browser/themes/theme_service.cc |
diff --git a/chrome/browser/themes/theme_service.cc b/chrome/browser/themes/theme_service.cc |
index dc413c3b490ee1650736fd02a29b3afc6da9bce7..524c4d3049ecf3c4bcee7716148490052ca97f6c 100644 |
--- a/chrome/browser/themes/theme_service.cc |
+++ b/chrome/browser/themes/theme_service.cc |
@@ -592,9 +592,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_) |