Index: chrome/browser/search_engines/template_url_prepopulate_data.cc |
diff --git a/chrome/browser/search_engines/template_url_prepopulate_data.cc b/chrome/browser/search_engines/template_url_prepopulate_data.cc |
index 7cd25c3ccc81d8bac90780ebeb76c080e735aa43..c197d8b093374b7c84dc739967b93fa0abe4223a 100644 |
--- a/chrome/browser/search_engines/template_url_prepopulate_data.cc |
+++ b/chrome/browser/search_engines/template_url_prepopulate_data.cc |
@@ -3284,8 +3284,10 @@ static const PrepopulatedEngine* GetEngineForURL(const std::string& url) { |
// First special-case Google, because the prepopulate URL for it will not |
// convert to a GURL and thus won't have an origin. Instead see if the |
// incoming URL's host is "[*.]google.<TLD>". |
- if (google_util::IsGoogleHostname(as_gurl.host())) |
+ if (google_util::IsGoogleHostname(as_gurl.host(), |
+ google_util::DISALLOW_SUBDOMAIN)) { |
Peter Kasting
2012/04/30 18:13:34
Nit: {} not necessary
SteveT
2012/04/30 21:15:44
Done.
|
return &google; |
+ } |
// Now check the rest of the prepopulate data. |
GURL origin(as_gurl.GetOrigin()); |