diff options
author | mpearson@chromium.org <mpearson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-14 00:39:46 +0000 |
---|---|---|
committer | mpearson@chromium.org <mpearson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-14 00:39:46 +0000 |
commit | 0a5c63fcec691789f4d853f76543babe5017c88f (patch) | |
tree | 11c09f61a1b04e47415f9fdee72103c2a1632449 /chrome/browser/about_flags.cc | |
parent | 61582e8c1737f572a99b201bf884daa32faa5082 (diff) | |
download | chromium_src-0a5c63fcec691789f4d853f76543babe5017c88f.zip chromium_src-0a5c63fcec691789f4d853f76543babe5017c88f.tar.gz chromium_src-0a5c63fcec691789f4d853f76543babe5017c88f.tar.bz2 |
Omnibox: HistorQuick Provider: Remove Reorder-for-Inlining Ability
It was only used when explicitly enabled on the command line.
I don't need it anymore because I'm putting into place a better
strategy for reordering for inlining. (Individual providers don't
have to do it themselves; the controller will do it for them.)
BUG=
Review URL: https://chromiumcodereview.appspot.com/18877006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211580 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/about_flags.cc')
-rw-r--r-- | chrome/browser/about_flags.cc | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc index 8cabc72..3d6a89b 100644 --- a/chrome/browser/about_flags.cc +++ b/chrome/browser/about_flags.cc @@ -118,19 +118,6 @@ std::set<CommandLine::StringType> ExtractFlagsFromCommandLine( return flags; } -const Experiment::Choice - kOmniboxHistoryQuickProviderReorderForInliningChoices[] = { - { IDS_FLAGS_OMNIBOX_HISTORY_QUICK_PROVIDER_REORDER_FOR_INLINING_AUTOMATIC, - "", - "" }, - { IDS_FLAGS_OMNIBOX_HISTORY_QUICK_PROVIDER_REORDER_FOR_INLINING_ENABLED, - switches::kOmniboxHistoryQuickProviderReorderForInlining, - switches::kOmniboxHistoryQuickProviderReorderForInliningEnabled }, - { IDS_FLAGS_OMNIBOX_HISTORY_QUICK_PROVIDER_REORDER_FOR_INLINING_DISABLED, - switches::kOmniboxHistoryQuickProviderReorderForInlining, - switches::kOmniboxHistoryQuickProviderReorderForInliningDisabled } -}; - const Experiment::Choice kEnableCompositingForFixedPositionChoices[] = { { IDS_GENERIC_EXPERIMENT_CHOICE_DEFAULT, "", "" }, { IDS_GENERIC_EXPERIMENT_CHOICE_ENABLED, @@ -692,13 +679,6 @@ const Experiment kExperiments[] = { SINGLE_VALUE_TYPE(switches::kEnableSmoothScrolling) }, { - "omnibox-history-quick-provider-reorder-for-inlining", - IDS_FLAGS_OMNIBOX_HISTORY_QUICK_PROVIDER_REORDER_FOR_INLINING_NAME, - IDS_FLAGS_OMNIBOX_HISTORY_QUICK_PROVIDER_REORDER_FOR_INLINING_DESCRIPTION, - kOsAll, - MULTI_VALUE_TYPE(kOmniboxHistoryQuickProviderReorderForInliningChoices) - }, - { "enable-panels", IDS_FLAGS_ENABLE_PANELS_NAME, IDS_FLAGS_ENABLE_PANELS_DESCRIPTION, |