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

Side by Side Diff: chrome/common/pref_names.cc

Issue 227008: Add touchpad sensitivity setting. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 namespace prefs { 7 namespace prefs {
8 8
9 // *************** PROFILE PREFS *************** 9 // *************** PROFILE PREFS ***************
10 // These are attached to the user profile 10 // These are attached to the user profile
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 183
184 #if defined(OS_CHROMEOS) 184 #if defined(OS_CHROMEOS)
185 // A boolean pref set to true if TapToClick is being done in browser. 185 // A boolean pref set to true if TapToClick is being done in browser.
186 extern const wchar_t kTapToClickEnabled[] = 186 extern const wchar_t kTapToClickEnabled[] =
187 L"settings.touchpad.enable_tap_to_click"; 187 L"settings.touchpad.enable_tap_to_click";
188 188
189 // A boolean pref set to true if VertEdgeScroll is being done in browser. 189 // A boolean pref set to true if VertEdgeScroll is being done in browser.
190 extern const wchar_t kVertEdgeScrollEnabled[] = 190 extern const wchar_t kVertEdgeScrollEnabled[] =
191 L"settings.touchpad.enable_vert_edge_scroll"; 191 L"settings.touchpad.enable_vert_edge_scroll";
192 192
193 // A double pref for the touchpad speed factor. 193 // A integer pref for the touchpad speed factor.
194 extern const wchar_t kTouchpadSpeedFactor[] = L"settings.touchpad.speed_factor"; 194 extern const wchar_t kTouchpadSpeedFactor[] = L"settings.touchpad.speed_factor";
195
196 // A integer pref for the touchpad sensitivity.
197 extern const wchar_t kTouchpadSensitivity[] = L"settings.touchpad.sensitivity";
195 #endif 198 #endif
196 199
197 // The disabled messages in IPC logging. 200 // The disabled messages in IPC logging.
198 const wchar_t kIpcDisabledMessages[] = L"ipc_log_disabled_messages"; 201 const wchar_t kIpcDisabledMessages[] = L"ipc_log_disabled_messages";
199 202
200 // A boolean pref set to true if a Home button to open the Home pages should be 203 // A boolean pref set to true if a Home button to open the Home pages should be
201 // visible on the toolbar. 204 // visible on the toolbar.
202 const wchar_t kShowHomeButton[] = L"browser.show_home_button"; 205 const wchar_t kShowHomeButton[] = L"browser.show_home_button";
203 206
204 // A boolean pref set to true if the Page and Options menu buttons should be 207 // A boolean pref set to true if the Page and Options menu buttons should be
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 // Integer location of the split bar in the browser view. 577 // Integer location of the split bar in the browser view.
575 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; 578 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location";
576 579
577 // 64-bit integer serialization of the base::Time when the last sync occured. 580 // 64-bit integer serialization of the base::Time when the last sync occured.
578 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; 581 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time";
579 582
580 // Boolean specifying whether the user finished setting up sync. 583 // Boolean specifying whether the user finished setting up sync.
581 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; 584 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed";
582 585
583 } // namespace prefs 586 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698