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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 #endif | 204 #endif |
205 | 205 |
206 #if defined(OS_CHROMEOS) | 206 #if defined(OS_CHROMEOS) |
207 // A boolean pref set to true if TapToClick is being done in browser. | 207 // A boolean pref set to true if TapToClick is being done in browser. |
208 extern const wchar_t kTapToClickEnabled[] = | 208 extern const wchar_t kTapToClickEnabled[] = |
209 L"settings.touchpad.enable_tap_to_click"; | 209 L"settings.touchpad.enable_tap_to_click"; |
210 | 210 |
211 // A boolean pref set to true if VertEdgeScroll is being done in browser. | 211 // A boolean pref set to true if VertEdgeScroll is being done in browser. |
212 extern const wchar_t kVertEdgeScrollEnabled[] = | 212 extern const wchar_t kVertEdgeScrollEnabled[] = |
213 L"settings.touchpad.enable_vert_edge_scroll"; | 213 L"settings.touchpad.enable_vert_edge_scroll"; |
| 214 |
| 215 // A double pref for the touchpad speed factor. |
| 216 extern const wchar_t kTouchpadSpeedFactor[] = L"settings.touchpad.speed_factor"; |
214 #endif | 217 #endif |
215 | 218 |
216 // The disabled messages in IPC logging. | 219 // The disabled messages in IPC logging. |
217 const wchar_t kIpcDisabledMessages[] = L"ipc_log_disabled_messages"; | 220 const wchar_t kIpcDisabledMessages[] = L"ipc_log_disabled_messages"; |
218 | 221 |
219 // A boolean pref set to true if a Home button to open the Home pages should be | 222 // A boolean pref set to true if a Home button to open the Home pages should be |
220 // visible on the toolbar. | 223 // visible on the toolbar. |
221 const wchar_t kShowHomeButton[] = L"browser.show_home_button"; | 224 const wchar_t kShowHomeButton[] = L"browser.show_home_button"; |
222 | 225 |
223 // A boolean pref set to true if the Page and Options menu buttons should be | 226 // A boolean pref set to true if the Page and Options menu buttons should be |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
590 // Integer location of the split bar in the browser view. | 593 // Integer location of the split bar in the browser view. |
591 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; | 594 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; |
592 | 595 |
593 // 64-bit integer serialization of the base::Time when the last sync occured. | 596 // 64-bit integer serialization of the base::Time when the last sync occured. |
594 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; | 597 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; |
595 | 598 |
596 // Boolean specifying whether the user finished setting up sync. | 599 // Boolean specifying whether the user finished setting up sync. |
597 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; | 600 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; |
598 | 601 |
599 } // namespace prefs | 602 } // namespace prefs |
OLD | NEW |