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

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: Adding space after opening brace. Created 5 years, 8 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
« no previous file with comments | « chrome/browser/ui/webui/options/clear_browser_data_handler.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 10bee919361923192e218343302f81052388874f..8b11fe878dca86d8449d06b1b7b7d85df6edb76d 100644
--- a/chrome/browser/ui/webui/options/handler_options_handler.cc
+++ b/chrome/browser/ui/webui/options/handler_options_handler.cc
@@ -32,21 +32,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",
+ localized_strings->SetString("handlersLearnMoreUrl",
chrome::kLearnMoreRegisterProtocolHandlerURL);
}
« no previous file with comments | « chrome/browser/ui/webui/options/clear_browser_data_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698