Index: chrome/browser/ui/webui/options/browser_options_handler.cc |
diff --git a/chrome/browser/ui/webui/options/browser_options_handler.cc b/chrome/browser/ui/webui/options/browser_options_handler.cc |
index b4078e816e9cc4c8c750e5d5ca998d121214e35e..e79236869116ba2d4362e57cfcdb98a528dc37ff 100644 |
--- a/chrome/browser/ui/webui/options/browser_options_handler.cc |
+++ b/chrome/browser/ui/webui/options/browser_options_handler.cc |
@@ -266,6 +266,11 @@ void BrowserOptionsHandler::GetLocalizedValues(DictionaryValue* values) { |
{ "proxiesLabelExtension", IDS_OPTIONS_EXTENSION_PROXIES_LABEL }, |
{ "proxiesLabelSystem", IDS_OPTIONS_SYSTEM_PROXIES_LABEL, |
IDS_PRODUCT_NAME }, |
+ { "resetProfileSettingsButton", IDS_RESET_PROFILE_SETTINGS_BUTTON}, |
+ { "resetProfileSettingsDescription", |
+ IDS_RESET_PROFILE_SETTINGS_DESCRIPTION}, |
+ { "resetProfileSettingsSectionTitle", |
+ IDS_RESET_PROFILE_SETTINGS_SECTION_TITLE}, |
{ "safeBrowsingEnableProtection", |
IDS_OPTIONS_SAFEBROWSING_ENABLEPROTECTION }, |
{ "sectionTitleAppearance", IDS_APPEARANCE_GROUP_NAME }, |
@@ -490,6 +495,10 @@ void BrowserOptionsHandler::GetLocalizedValues(DictionaryValue* values) { |
"gpuEnabledAtStart", |
g_browser_process->gpu_mode_manager()->initial_gpu_mode_pref()); |
#endif |
+ |
+ values->SetBoolean("enableResetProfileSettingsSection", |
+ CommandLine::ForCurrentProcess()->HasSwitch( |
+ switches::kEnableResetProfileSettings)); |
} |
void BrowserOptionsHandler::RegisterCloudPrintValues(DictionaryValue* values) { |