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

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

Issue 1015623007: Changing Option String Resource to lowerCamelcases in handler_options_handler.cc file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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/handler_options_handler.cc
diff --git a/chrome/browser/ui/webui/options/handler_options_handler.cc b/chrome/browser/ui/webui/options/handler_options_handler.cc
index b50d7d649811cf70c0f457b41e8399d13b78cf15..fa0664781a38f5115d158ed57c23d07bf0c7b05e 100644
--- a/chrome/browser/ui/webui/options/handler_options_handler.cc
+++ b/chrome/browser/ui/webui/options/handler_options_handler.cc
@@ -38,22 +38,21 @@ void HandlerOptionsHandler::GetLocalizedValues(
DCHECK(localized_strings);
static OptionsStringResource resources[] = {
- { "handlers_tab_label", IDS_HANDLERS_TAB_LABEL },
- { "handlers_allow", IDS_HANDLERS_ALLOW_RADIO },
- { "handlers_block", IDS_HANDLERS_DONOTALLOW_RADIO },
- { "handlers_type_column_header", IDS_HANDLERS_TYPE_COLUMN_HEADER },
- { "handlers_site_column_header", IDS_HANDLERS_SITE_COLUMN_HEADER },
- { "handlers_remove_link", IDS_HANDLERS_REMOVE_HANDLER_LINK },
- { "handlers_none_handler", IDS_HANDLERS_NONE_HANDLER },
- { "handlers_active_heading", IDS_HANDLERS_ACTIVE_HEADING },
- { "handlers_ignored_heading", IDS_HANDLERS_IGNORED_HEADING },
+ {"handlersTabLabel", IDS_HANDLERS_TAB_LABEL},
+ {"handlersAllow", IDS_HANDLERS_ALLOW_RADIO},
+ {"handlersBlock", IDS_HANDLERS_DONOTALLOW_RADIO},
+ {"handlersTypeColumnHeader", IDS_HANDLERS_TYPE_COLUMN_HEADER},
+ {"handlersSiteColumnHeader", IDS_HANDLERS_SITE_COLUMN_HEADER},
+ {"handlersRemoveLink", IDS_HANDLERS_REMOVE_HANDLER_LINK},
+ {"handlersNoneHandler", IDS_HANDLERS_NONE_HANDLER},
+ {"handlersActiveHeading", IDS_HANDLERS_ACTIVE_HEADING},
+ {"handlersIgnoredHeading", IDS_HANDLERS_IGNORED_HEADING},
};
RegisterTitle(localized_strings, "handlersPage",
IDS_HANDLER_OPTIONS_WINDOW_TITLE);
RegisterStrings(localized_strings, resources, arraysize(resources));
- localized_strings->SetString("handlers_learn_more_url",
- kHandlersLearnMoreUrl);
+ localized_strings->SetString("handlersLearnMoreUrl", kHandlersLearnMoreUrl);
}
void HandlerOptionsHandler::InitializeHandler() {

Powered by Google App Engine
This is Rietveld 408576698