OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 const char kLabsAdvancedFilesystemEnabled[] = | 373 const char kLabsAdvancedFilesystemEnabled[] = |
374 "settings.labs.advanced_filesystem"; | 374 "settings.labs.advanced_filesystem"; |
375 | 375 |
376 // A boolean pref which turns on the mediaplayer. | 376 // A boolean pref which turns on the mediaplayer. |
377 const char kLabsMediaplayerEnabled[] = "settings.labs.mediaplayer"; | 377 const char kLabsMediaplayerEnabled[] = "settings.labs.mediaplayer"; |
378 | 378 |
379 // An integer pref which maps to the extension state for Talk. | 379 // An integer pref which maps to the extension state for Talk. |
380 const char kLabsTalkEnabled[] = | 380 const char kLabsTalkEnabled[] = |
381 "extensions.settings.ggnioahjipcehijkhpdjekioddnjoben.state"; | 381 "extensions.settings.ggnioahjipcehijkhpdjekioddnjoben.state"; |
382 | 382 |
| 383 // A boolean pref that turns on screen locker. |
| 384 const char kEnableScreenLock[] = "settings.enable_screen_lock"; |
| 385 |
383 #endif // defined(OS_CHROMEOS) | 386 #endif // defined(OS_CHROMEOS) |
384 | 387 |
385 // The disabled messages in IPC logging. | 388 // The disabled messages in IPC logging. |
386 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; | 389 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; |
387 | 390 |
388 // A boolean pref set to true if a Home button to open the Home pages should be | 391 // A boolean pref set to true if a Home button to open the Home pages should be |
389 // visible on the toolbar. | 392 // visible on the toolbar. |
390 const char kShowHomeButton[] = "browser.show_home_button"; | 393 const char kShowHomeButton[] = "browser.show_home_button"; |
391 | 394 |
392 // A boolean pref set to true if the Page and Options menu buttons should be | 395 // A boolean pref set to true if the Page and Options menu buttons should be |
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1018 // String specifying the proxy server. For a specification of the expected | 1021 // String specifying the proxy server. For a specification of the expected |
1019 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 1022 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
1020 const char kProxyServer[] = "proxy.server"; | 1023 const char kProxyServer[] = "proxy.server"; |
1021 // URL to the proxy .pac file. | 1024 // URL to the proxy .pac file. |
1022 const char kProxyPacUrl[] = "proxy.pac_url"; | 1025 const char kProxyPacUrl[] = "proxy.pac_url"; |
1023 // String containing proxy bypass rules. For a specification of the | 1026 // String containing proxy bypass rules. For a specification of the |
1024 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 1027 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
1025 const char kProxyBypassList[] = "proxy.bypass_list"; | 1028 const char kProxyBypassList[] = "proxy.bypass_list"; |
1026 | 1029 |
1027 } // namespace prefs | 1030 } // namespace prefs |
OLD | NEW |