| Index: chrome/browser/autocomplete/search_provider.cc
|
| ===================================================================
|
| --- chrome/browser/autocomplete/search_provider.cc (revision 110237)
|
| +++ chrome/browser/autocomplete/search_provider.cc (working copy)
|
| @@ -330,7 +330,7 @@
|
| // Don't send any queries to the server until some time has elapsed after
|
| // the last keypress, to avoid flooding the server with requests we are
|
| // likely to end up throwing away anyway.
|
| - const int kQueryDelayMs = 200;
|
| + static const int kQueryDelayMs = 200;
|
|
|
| if (!IsQuerySuitableForSuggest()) {
|
| StopSuggest();
|
| @@ -491,7 +491,7 @@
|
| DictionaryValue* dict_val = static_cast<DictionaryValue*>(optional_val);
|
|
|
| // Parse Google Suggest specific type extension.
|
| - const std::string kGoogleSuggestType("google:suggesttype");
|
| + static const std::string kGoogleSuggestType("google:suggesttype");
|
| if (dict_val->HasKey(kGoogleSuggestType))
|
| dict_val->GetList(kGoogleSuggestType, &type_list);
|
| }
|
|
|