| Index: components/search/search.cc
|
| diff --git a/components/search/search.cc b/components/search/search.cc
|
| index e7389813510358bc060497d80c558b725793312f..d26083f79e95a7f7af41d132026be9551ce319e7 100644
|
| --- a/components/search/search.cc
|
| +++ b/components/search/search.cc
|
| @@ -147,10 +147,7 @@ bool GetBoolValueForFlagWithDefault(const std::string& flag,
|
| return !!GetUInt64ValueForFlagWithDefault(flag, default_value ? 1 : 0, flags);
|
| }
|
|
|
| -std::string InstantExtendedEnabledParam(bool for_search) {
|
| - // TODO(treib): Remove |for_search| and update callers that set it to true.
|
| - if (for_search)
|
| - return std::string();
|
| +std::string InstantExtendedEnabledParam() {
|
| return std::string(google_util::kInstantExtendedAPIParam) + "=" +
|
| base::Uint64ToString(EmbeddedSearchPageVersion()) + "&";
|
| }
|
|
|