OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1780 // A private RSA key for ADB handshake. | 1780 // A private RSA key for ADB handshake. |
1781 const char kDevToolsAdbKey[] = "devtools.adb_key"; | 1781 const char kDevToolsAdbKey[] = "devtools.adb_key"; |
1782 | 1782 |
1783 const char kDevToolsDisabled[] = "devtools.disabled"; | 1783 const char kDevToolsDisabled[] = "devtools.disabled"; |
1784 | 1784 |
1785 // Determines whether devtools should be discovering usb devices for | 1785 // Determines whether devtools should be discovering usb devices for |
1786 // remote debugging at chrome://inspect. | 1786 // remote debugging at chrome://inspect. |
1787 const char kDevToolsDiscoverUsbDevicesEnabled[] = | 1787 const char kDevToolsDiscoverUsbDevicesEnabled[] = |
1788 "devtools.discover_usb_devices"; | 1788 "devtools.discover_usb_devices"; |
1789 | 1789 |
1790 // A string specifying the dock location (either 'bottom' or 'right'). | |
1791 const char kDevToolsDockSide[] = "devtools.dock_side"; | |
1792 | |
1793 // Maps of files edited locally using DevTools. | 1790 // Maps of files edited locally using DevTools. |
1794 const char kDevToolsEditedFiles[] = "devtools.edited_files"; | 1791 const char kDevToolsEditedFiles[] = "devtools.edited_files"; |
1795 | 1792 |
1796 // List of file system paths added in DevTools. | 1793 // List of file system paths added in DevTools. |
1797 const char kDevToolsFileSystemPaths[] = "devtools.file_system_paths"; | 1794 const char kDevToolsFileSystemPaths[] = "devtools.file_system_paths"; |
1798 | 1795 |
1799 // A boolean specifying whether dev tools window should be opened docked. | 1796 // A boolean specifying whether dev tools window should be opened docked. |
1800 const char kDevToolsOpenDocked[] = "devtools.open_docked"; | 1797 const char kDevToolsOpenDocked[] = "devtools.open_docked"; |
1801 | 1798 |
1802 // A boolean specifying whether port forwarding should be enabled. | 1799 // A boolean specifying whether port forwarding should be enabled. |
(...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2673 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; | 2670 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; |
2674 | 2671 |
2675 // The number of seconds since epoch that the OS password was last changed. | 2672 // The number of seconds since epoch that the OS password was last changed. |
2676 const char kOsPasswordLastChanged[] = | 2673 const char kOsPasswordLastChanged[] = |
2677 "password_manager.os_password_last_changed"; | 2674 "password_manager.os_password_last_changed"; |
2678 #endif | 2675 #endif |
2679 | 2676 |
2680 // Whether DNS Quick Check is disabled in proxy resolution. | 2677 // Whether DNS Quick Check is disabled in proxy resolution. |
2681 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2678 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2682 } // namespace prefs | 2679 } // namespace prefs |
OLD | NEW |