| Index: chrome/browser/search_engines/search_terms_data.cc
|
| ===================================================================
|
| --- chrome/browser/search_engines/search_terms_data.cc (revision 208834)
|
| +++ chrome/browser/search_engines/search_terms_data.cc (working copy)
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "chrome/browser/search_engines/search_terms_data.h"
|
|
|
| -#include "base/command_line.h"
|
| #include "base/logging.h"
|
| #include "base/metrics/field_trial.h"
|
| #include "base/prefs/pref_service.h"
|
| @@ -16,7 +15,6 @@
|
| #include "chrome/browser/search/search.h"
|
| #include "chrome/browser/themes/theme_service.h"
|
| #include "chrome/browser/themes/theme_service_factory.h"
|
| -#include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/pref_names.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "googleurl/src/gurl.h"
|
| @@ -38,11 +36,6 @@
|
| }
|
|
|
| std::string SearchTermsData::GoogleBaseSuggestURLValue() const {
|
| - std::string base_suggest_url = CommandLine::ForCurrentProcess()->
|
| - GetSwitchValueASCII(switches::kGoogleBaseSuggestURL);
|
| - if (!base_suggest_url.empty())
|
| - return base_suggest_url;
|
| -
|
| // Start with the Google base URL.
|
| const GURL base_url(GoogleBaseURLValue());
|
| DCHECK(base_url.is_valid());
|
|
|