| Index: chrome/browser/search/search.cc
|
| diff --git a/chrome/browser/search/search.cc b/chrome/browser/search/search.cc
|
| index 386cd3c16dec935881b4e66be72bcf076e47f656..0d0d6dd055026ed7cbdde3b4ed0b3ac7db4423e9 100644
|
| --- a/chrome/browser/search/search.cc
|
| +++ b/chrome/browser/search/search.cc
|
| @@ -61,7 +61,6 @@ const char kReuseInstantSearchBasePage[] = "reuse_instant_search_base_page";
|
| // Controls whether to use the alternate Instant search base URL. This allows
|
| // experimentation of Instant search.
|
| const char kUseAltInstantURL[] = "use_alternate_instant_url";
|
| -const char kAltInstantURLPath[] = "search";
|
| const char kAltInstantURLQueryParams[] = "&qbp=1";
|
|
|
| const char kDisplaySearchButtonFlagName[] = "display_search_button";
|
| @@ -494,8 +493,6 @@ GURL GetInstantURL(Profile* profile, bool force_instant_results) {
|
|
|
| if (ShouldUseAltInstantURL()) {
|
| GURL::Replacements replacements;
|
| - const std::string path(kAltInstantURLPath);
|
| - replacements.SetPathStr(path);
|
| const std::string query(
|
| instant_url.query() + std::string(kAltInstantURLQueryParams));
|
| replacements.SetQueryStr(query);
|
|
|