| OLD | NEW |
| 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 Loading... |
| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 // Integer location of the split bar in the browser view. | 572 // Integer location of the split bar in the browser view. |
| 570 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; | 573 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; |
| 571 | 574 |
| 572 // 64-bit integer serialization of the base::Time when the last sync occured. | 575 // 64-bit integer serialization of the base::Time when the last sync occured. |
| 573 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; | 576 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; |
| 574 | 577 |
| 575 // Boolean specifying whether the user finished setting up sync. | 578 // Boolean specifying whether the user finished setting up sync. |
| 576 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; | 579 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; |
| 577 | 580 |
| 578 } // namespace prefs | 581 } // namespace prefs |
| OLD | NEW |