| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 #if defined(OS_LINUX) | 196 #if defined(OS_LINUX) |
| 197 // Prefs for SSLConfigServicePref. Currently, these are only present on | 197 // Prefs for SSLConfigServicePref. Currently, these are only present on |
| 198 // and used by Linux. | 198 // and used by Linux. |
| 199 extern const wchar_t kCertRevocationCheckingEnabled[] = | 199 extern const wchar_t kCertRevocationCheckingEnabled[] = |
| 200 L"ssl.rev_checking.enabled"; | 200 L"ssl.rev_checking.enabled"; |
| 201 extern const wchar_t kSSL2Enabled[] = L"ssl.ssl2.enabled"; | 201 extern const wchar_t kSSL2Enabled[] = L"ssl.ssl2.enabled"; |
| 202 extern const wchar_t kSSL3Enabled[] = L"ssl.ssl3.enabled"; | 202 extern const wchar_t kSSL3Enabled[] = L"ssl.ssl3.enabled"; |
| 203 extern const wchar_t kTLS1Enabled[] = L"ssl.tls1.enabled"; | 203 extern const wchar_t kTLS1Enabled[] = L"ssl.tls1.enabled"; |
| 204 #endif | 204 #endif |
| 205 | 205 |
| 206 #if defined(OS_CHROMEOS) |
| 207 // A boolean pref set to true if TapToClick is being done in browser. |
| 208 extern const wchar_t kTapToClickEnabled[] = |
| 209 L"settings.touchpad.enable_tap_to_click"; |
| 210 |
| 211 // A boolean pref set to true if VertEdgeScroll is being done in browser. |
| 212 extern const wchar_t kVertEdgeScrollEnabled[] = |
| 213 L"settings.touchpad.enable_vert_edge_scroll"; |
| 214 #endif |
| 215 |
| 206 // The disabled messages in IPC logging. | 216 // The disabled messages in IPC logging. |
| 207 const wchar_t kIpcDisabledMessages[] = L"ipc_log_disabled_messages"; | 217 const wchar_t kIpcDisabledMessages[] = L"ipc_log_disabled_messages"; |
| 208 | 218 |
| 209 // A boolean pref set to true if a Home button to open the Home pages should be | 219 // A boolean pref set to true if a Home button to open the Home pages should be |
| 210 // visible on the toolbar. | 220 // visible on the toolbar. |
| 211 const wchar_t kShowHomeButton[] = L"browser.show_home_button"; | 221 const wchar_t kShowHomeButton[] = L"browser.show_home_button"; |
| 212 | 222 |
| 213 // A boolean pref set to true if the Page and Options menu buttons should be | 223 // A boolean pref set to true if the Page and Options menu buttons should be |
| 214 // visible on the toolbar. This is only used for Mac where the default is to | 224 // visible on the toolbar. This is only used for Mac where the default is to |
| 215 // have these menu in the main menubar, not as buttons on the toolbar. | 225 // have these menu in the main menubar, not as buttons on the toolbar. |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 // Integer location of the split bar in the browser view. | 590 // Integer location of the split bar in the browser view. |
| 581 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; | 591 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; |
| 582 | 592 |
| 583 // 64-bit integer serialization of the base::Time when the last sync occured. | 593 // 64-bit integer serialization of the base::Time when the last sync occured. |
| 584 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; | 594 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; |
| 585 | 595 |
| 586 // Boolean specifying whether the user finished setting up sync. | 596 // Boolean specifying whether the user finished setting up sync. |
| 587 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; | 597 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; |
| 588 | 598 |
| 589 } // namespace prefs | 599 } // namespace prefs |
| OLD | NEW |