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

Unified Diff: chrome/browser/ui/webui/options/chromeos/system_options_handler.cc

Issue 8905025: ChromeOS Mouse settings. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: merge options changes into options2 Created 9 years 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/chromeos/system_options_handler.cc
===================================================================
--- chrome/browser/ui/webui/options/chromeos/system_options_handler.cc (revision 114508)
+++ chrome/browser/ui/webui/options/chromeos/system_options_handler.cc (working copy)
@@ -44,7 +44,6 @@
void TouchpadExistsFileThread(bool* exists) {
*exists = chromeos::system::touchpad_settings::TouchpadExists();
}
-
}
SystemOptionsHandler::SystemOptionsHandler() {
@@ -75,8 +74,12 @@
localized_strings->SetString("brightnessIncrease",
l10n_util::GetStringUTF16(IDS_OPTIONS_SETTINGS_BRIGHTNESS_INCREASE));
+ localized_strings->SetString("pointer",
+ l10n_util::GetStringUTF16(IDS_OPTIONS_SETTINGS_SECTION_TITLE_POINTER));
localized_strings->SetString("touchpad",
l10n_util::GetStringUTF16(IDS_OPTIONS_SETTINGS_SECTION_TITLE_TOUCHPAD));
+ localized_strings->SetString("mouse",
+ l10n_util::GetStringUTF16(IDS_OPTIONS_SETTINGS_SECTION_TITLE_MOUSE));
localized_strings->SetString("enableTapToClick",
l10n_util::GetStringUTF16(
IDS_OPTIONS_SETTINGS_TAP_TO_CLICK_ENABLED_DESCRIPTION));
@@ -88,6 +91,9 @@
localized_strings->SetString("sensitivityMore",
l10n_util::GetStringUTF16(
IDS_OPTIONS_SETTINGS_SENSITIVITY_MORE_DESCRIPTION));
+ localized_strings->SetString("primaryMouseRight",
+ l10n_util::GetStringUTF16(
+ IDS_OPTIONS_SETTINGS_PRIMARY_MOUSE_RIGHT_DESCRIPTION));
localized_strings->SetString("language",
l10n_util::GetStringUTF16(IDS_OPTIONS_SETTINGS_SECTION_TITLE_LANGUAGE));

Powered by Google App Engine
This is Rietveld 408576698