| Index: chrome/browser/autocomplete/chrome_autocomplete_provider_client.cc
|
| diff --git a/chrome/browser/autocomplete/chrome_autocomplete_provider_client.cc b/chrome/browser/autocomplete/chrome_autocomplete_provider_client.cc
|
| index dd567035b410306b2760b256033bc9a39cb3b1cb..f5f29cc4c8456d08a62994f36469d6a8c1569bd0 100644
|
| --- a/chrome/browser/autocomplete/chrome_autocomplete_provider_client.cc
|
| +++ b/chrome/browser/autocomplete/chrome_autocomplete_provider_client.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include <stddef.h>
|
|
|
| -#include "base/feature_list.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ptr_util.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| @@ -24,7 +23,6 @@
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/search_engines/template_url_service_factory.h"
|
| #include "chrome/browser/sync/profile_sync_service_factory.h"
|
| -#include "chrome/common/chrome_features.h"
|
| #include "chrome/common/pref_names.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "components/browser_sync/profile_sync_service.h"
|
| @@ -187,13 +185,6 @@ std::vector<base::string16> ChromeAutocompleteProviderClient::GetBuiltinURLs() {
|
| builtins.push_back(settings +
|
| base::ASCIIToUTF16(kChromeSettingsSubPages[i]));
|
| }
|
| -
|
| - if (!base::FeatureList::IsEnabled(features::kMaterialDesignSettings)) {
|
| - builtins.push_back(
|
| - settings +
|
| - base::ASCIIToUTF16(
|
| - chrome::kDeprecatedOptionsContentSettingsExceptionsSubPage));
|
| - }
|
| #endif
|
|
|
| return builtins;
|
|
|