Index: chrome/browser/search_engines/search_terms_data.cc |
diff --git a/chrome/browser/search_engines/search_terms_data.cc b/chrome/browser/search_engines/search_terms_data.cc |
index 7c6e0d7257efa1eca4053b732a21fe20e4878625..bb8b95c244532f8c16c40c4b26b016ecb219c657 100644 |
--- a/chrome/browser/search_engines/search_terms_data.cc |
+++ b/chrome/browser/search_engines/search_terms_data.cc |
@@ -180,9 +180,8 @@ std::string UIThreadSearchTermsData::NTPIsThemedParam() const { |
// TODO(dhollowa): Determine fraction of custom themes that don't affect the |
// NTP background and/or color. |
ThemeService* theme_service = ThemeServiceFactory::GetForProfile(profile_); |
- // NTP is considered themed if the theme is not default and not native (GTK+). |
- if (theme_service && !theme_service->UsingDefaultTheme() && |
- !theme_service->UsingNativeTheme()) |
+ // NTP is considered themed if the theme is not default. |
+ if (theme_service && !theme_service->UsingDefaultTheme()) |
return "es_th=1&"; |
#endif // defined(ENABLE_THEMES) |