Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(483)

Side by Side Diff: chrome/common/pref_names.cc

Issue 63173016: DevTools: place DevTools WebContents underneath inspected WebContents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1758 matching lines...) Expand 10 before | Expand all | Expand 10 after
1769 1769
1770 // A string specifying the dock location (either 'bottom' or 'right'). 1770 // A string specifying the dock location (either 'bottom' or 'right').
1771 const char kDevToolsDockSide[] = "devtools.dock_side"; 1771 const char kDevToolsDockSide[] = "devtools.dock_side";
1772 1772
1773 // Maps of files edited locally using DevTools. 1773 // Maps of files edited locally using DevTools.
1774 const char kDevToolsEditedFiles[] = "devtools.edited_files"; 1774 const char kDevToolsEditedFiles[] = "devtools.edited_files";
1775 1775
1776 // List of file system paths added in DevTools. 1776 // List of file system paths added in DevTools.
1777 const char kDevToolsFileSystemPaths[] = "devtools.file_system_paths"; 1777 const char kDevToolsFileSystemPaths[] = "devtools.file_system_paths";
1778 1778
1779 // Integer location of the horizontal split bar in the browser view.
1780 const char kDevToolsHSplitLocation[] = "devtools.split_location";
1781
1782 // A boolean specifying whether dev tools window should be opened docked. 1779 // A boolean specifying whether dev tools window should be opened docked.
1783 const char kDevToolsOpenDocked[] = "devtools.open_docked"; 1780 const char kDevToolsOpenDocked[] = "devtools.open_docked";
1784 1781
1785 // A boolean specifying whether port forwarding should be enabled. 1782 // A boolean specifying whether port forwarding should be enabled.
1786 const char kDevToolsPortForwardingEnabled[] = 1783 const char kDevToolsPortForwardingEnabled[] =
1787 "devtools.port_forwarding_enabled"; 1784 "devtools.port_forwarding_enabled";
1788 1785
1789 // A boolean specifying whether default port forwarding configuration has been 1786 // A boolean specifying whether default port forwarding configuration has been
1790 // set. 1787 // set.
1791 const char kDevToolsPortForwardingDefaultSet[] = 1788 const char kDevToolsPortForwardingDefaultSet[] =
1792 "devtools.port_forwarding_default_set"; 1789 "devtools.port_forwarding_default_set";
1793 1790
1794 // A dictionary of port->location pairs for port forwarding. 1791 // A dictionary of port->location pairs for port forwarding.
1795 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; 1792 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config";
1796 1793
1797 #if defined(OS_ANDROID) 1794 #if defined(OS_ANDROID)
1798 // A boolean specifying whether remote dev tools debugging is enabled. 1795 // A boolean specifying whether remote dev tools debugging is enabled.
1799 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; 1796 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled";
1800 #endif 1797 #endif
1801 1798
1802 // Integer location of the vertical split bar in the browser view.
1803 const char kDevToolsVSplitLocation[] = "devtools.v_split_location";
1804
1805 #if defined(OS_ANDROID) || defined(OS_IOS) 1799 #if defined(OS_ANDROID) || defined(OS_IOS)
1806 // A boolean specifying whether a SPDY proxy is enabled. 1800 // A boolean specifying whether a SPDY proxy is enabled.
1807 const char kSpdyProxyAuthEnabled[] = "spdy_proxy.enabled"; 1801 const char kSpdyProxyAuthEnabled[] = "spdy_proxy.enabled";
1808 const char kSpdyProxyAuthWasEnabledBefore[] = "spdy_proxy.was_enabled_before"; 1802 const char kSpdyProxyAuthWasEnabledBefore[] = "spdy_proxy.was_enabled_before";
1809 #endif // defined(OS_ANDROID) || defined(OS_IOS) 1803 #endif // defined(OS_ANDROID) || defined(OS_IOS)
1810 1804
1811 // Boolean which stores if the user is allowed to signin to chrome. 1805 // Boolean which stores if the user is allowed to signin to chrome.
1812 const char kSigninAllowed[] = "signin.allowed"; 1806 const char kSigninAllowed[] = "signin.allowed";
1813 1807
1814 // 64-bit integer serialization of the base::Time when the last sync occurred. 1808 // 64-bit integer serialization of the base::Time when the last sync occurred.
(...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after
2629 #if defined(OS_WIN) 2623 #if defined(OS_WIN)
2630 // Whether the password was blank, only valid if OS password was last changed 2624 // Whether the password was blank, only valid if OS password was last changed
2631 // on or before the value contained in kOsPasswordLastChanged. 2625 // on or before the value contained in kOsPasswordLastChanged.
2632 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; 2626 const char kOsPasswordBlank[] = "password_manager.os_password_blank";
2633 2627
2634 // The number of seconds since epoch that the OS password was last changed. 2628 // The number of seconds since epoch that the OS password was last changed.
2635 const char kOsPasswordLastChanged[] = 2629 const char kOsPasswordLastChanged[] =
2636 "password_manager.os_password_last_changed"; 2630 "password_manager.os_password_last_changed";
2637 #endif 2631 #endif
2638 } // namespace prefs 2632 } // namespace prefs
OLDNEW
« chrome/browser/devtools/devtools_window.cc ('K') | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698