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 1743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1754 | 1754 |
1755 // A string specifying the dock location (either 'bottom' or 'right'). | 1755 // A string specifying the dock location (either 'bottom' or 'right'). |
1756 const char kDevToolsDockSide[] = "devtools.dock_side"; | 1756 const char kDevToolsDockSide[] = "devtools.dock_side"; |
1757 | 1757 |
1758 // Maps of files edited locally using DevTools. | 1758 // Maps of files edited locally using DevTools. |
1759 const char kDevToolsEditedFiles[] = "devtools.edited_files"; | 1759 const char kDevToolsEditedFiles[] = "devtools.edited_files"; |
1760 | 1760 |
1761 // List of file system paths added in DevTools. | 1761 // List of file system paths added in DevTools. |
1762 const char kDevToolsFileSystemPaths[] = "devtools.file_system_paths"; | 1762 const char kDevToolsFileSystemPaths[] = "devtools.file_system_paths"; |
1763 | 1763 |
1764 // Integer location of the horizontal split bar in the browser view. | |
1765 const char kDevToolsHSplitLocation[] = "devtools.split_location"; | |
1766 | |
1767 // A boolean specifying whether dev tools window should be opened docked. | 1764 // A boolean specifying whether dev tools window should be opened docked. |
1768 const char kDevToolsOpenDocked[] = "devtools.open_docked"; | 1765 const char kDevToolsOpenDocked[] = "devtools.open_docked"; |
1769 | 1766 |
1770 // A boolean specifying whether port forwarding should be enabled. | 1767 // A boolean specifying whether port forwarding should be enabled. |
1771 const char kDevToolsPortForwardingEnabled[] = | 1768 const char kDevToolsPortForwardingEnabled[] = |
1772 "devtools.port_forwarding_enabled"; | 1769 "devtools.port_forwarding_enabled"; |
1773 | 1770 |
1774 // A boolean specifying whether default port forwarding configuration has been | 1771 // A boolean specifying whether default port forwarding configuration has been |
1775 // set. | 1772 // set. |
1776 const char kDevToolsPortForwardingDefaultSet[] = | 1773 const char kDevToolsPortForwardingDefaultSet[] = |
1777 "devtools.port_forwarding_default_set"; | 1774 "devtools.port_forwarding_default_set"; |
1778 | 1775 |
1779 // A dictionary of port->location pairs for port forwarding. | 1776 // A dictionary of port->location pairs for port forwarding. |
1780 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; | 1777 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; |
1781 | 1778 |
1782 #if defined(OS_ANDROID) | 1779 #if defined(OS_ANDROID) |
1783 // A boolean specifying whether remote dev tools debugging is enabled. | 1780 // A boolean specifying whether remote dev tools debugging is enabled. |
1784 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; | 1781 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; |
1785 #endif | 1782 #endif |
1786 | 1783 |
1787 // Integer location of the vertical split bar in the browser view. | |
1788 const char kDevToolsVSplitLocation[] = "devtools.v_split_location"; | |
1789 | |
1790 #if defined(OS_ANDROID) || defined(OS_IOS) | 1784 #if defined(OS_ANDROID) || defined(OS_IOS) |
1791 // A boolean specifying whether a SPDY proxy is enabled. | 1785 // A boolean specifying whether a SPDY proxy is enabled. |
1792 const char kSpdyProxyAuthEnabled[] = "spdy_proxy.enabled"; | 1786 const char kSpdyProxyAuthEnabled[] = "spdy_proxy.enabled"; |
1793 const char kSpdyProxyAuthWasEnabledBefore[] = "spdy_proxy.was_enabled_before"; | 1787 const char kSpdyProxyAuthWasEnabledBefore[] = "spdy_proxy.was_enabled_before"; |
1794 #endif // defined(OS_ANDROID) || defined(OS_IOS) | 1788 #endif // defined(OS_ANDROID) || defined(OS_IOS) |
1795 | 1789 |
1796 // Boolean which stores if the user is allowed to signin to chrome. | 1790 // Boolean which stores if the user is allowed to signin to chrome. |
1797 const char kSigninAllowed[] = "signin.allowed"; | 1791 const char kSigninAllowed[] = "signin.allowed"; |
1798 | 1792 |
1799 // 64-bit integer serialization of the base::Time when the last sync occurred. | 1793 // 64-bit integer serialization of the base::Time when the last sync occurred. |
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2611 #if defined(OS_ANDROID) | 2605 #if defined(OS_ANDROID) |
2612 // A list of partner bookmark rename/remove mappings. | 2606 // A list of partner bookmark rename/remove mappings. |
2613 // Each list item is a dictionary containing a "url", a "provider_title" and | 2607 // Each list item is a dictionary containing a "url", a "provider_title" and |
2614 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2608 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2615 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2609 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2616 // title or an empty string if the bookmark node was removed. | 2610 // title or an empty string if the bookmark node was removed. |
2617 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2611 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2618 #endif | 2612 #endif |
2619 | 2613 |
2620 } // namespace prefs | 2614 } // namespace prefs |
OLD | NEW |