| Index: chrome/browser/first_run/first_run.cc
|
| ===================================================================
|
| --- chrome/browser/first_run/first_run.cc (revision 107211)
|
| +++ chrome/browser/first_run/first_run.cc (working copy)
|
| @@ -449,21 +449,8 @@
|
| }
|
|
|
| // static
|
| -bool FirstRun::SearchEngineSelectorDisallowed() {
|
| -#if defined(GOOGLE_CHROME_BUILD)
|
| - // For now, the only case in which the search engine dialog should never be
|
| - // shown is if the locale is Russia.
|
| - std::string locale = g_browser_process->GetApplicationLocale();
|
| - return (locale == "ru");
|
| -#else
|
| - return false;
|
| -#endif
|
| -}
|
| -
|
| -// static
|
| bool FirstRun::ShouldShowSearchEngineSelector(const TemplateURLService* model) {
|
| - return !SearchEngineSelectorDisallowed() &&
|
| - model && !model->is_default_search_managed();
|
| + return model && !model->is_default_search_managed();
|
| }
|
|
|
| // static
|
|
|