Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6457)

Unified Diff: chrome/browser/ui/webui/options/core_options_handler.cc

Issue 11066015: Finish implementation of controlled setting indicator (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/options/core_options_handler.cc
diff --git a/chrome/browser/ui/webui/options/core_options_handler.cc b/chrome/browser/ui/webui/options/core_options_handler.cc
index 32c796bc296216f61f369c827bb42a3be1679d60..f2bcaaf411866a84d45012950b8c1b576957de71 100644
--- a/chrome/browser/ui/webui/options/core_options_handler.cc
+++ b/chrome/browser/ui/webui/options/core_options_handler.cc
@@ -95,9 +95,12 @@ void CoreOptionsHandler::GetStaticLocalizedValues(
l10n_util::GetStringUTF16(IDS_OPTIONS_CONTROLLED_SETTING_EXTENSION));
localized_strings->SetString("controlledSettingRecommended",
l10n_util::GetStringUTF16(IDS_OPTIONS_CONTROLLED_SETTING_RECOMMENDED));
- localized_strings->SetString("controlledSettingApplyRecommendation",
+ localized_strings->SetString("controlledSettingHasRecommendation",
l10n_util::GetStringUTF16(
- IDS_OPTIONS_CONTROLLED_SETTING_APPLY_RECOMMENDATION));
+ IDS_OPTIONS_CONTROLLED_SETTING_HAS_RECOMMENDATION));
+ localized_strings->SetString("controlledSettingFollowRecommendation",
+ l10n_util::GetStringUTF16(
+ IDS_OPTIONS_CONTROLLED_SETTING_FOLLOW_RECOMMENDATION));
// Search
RegisterTitle(localized_strings, "searchPage", IDS_OPTIONS_SEARCH_PAGE_TITLE);

Powered by Google App Engine
This is Rietveld 408576698