| 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 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 1627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1638 const char kNtpAppPageNames[] = "ntp.app_page_names"; | 1638 const char kNtpAppPageNames[] = "ntp.app_page_names"; |
| 1639 | 1639 |
| 1640 const char kDevToolsDisabled[] = "devtools.disabled"; | 1640 const char kDevToolsDisabled[] = "devtools.disabled"; |
| 1641 | 1641 |
| 1642 // A string specifying the dock location (either 'bottom' or 'right'). | 1642 // A string specifying the dock location (either 'bottom' or 'right'). |
| 1643 const char kDevToolsDockSide[] = "devtools.dock_side"; | 1643 const char kDevToolsDockSide[] = "devtools.dock_side"; |
| 1644 | 1644 |
| 1645 // Maps of files edited locally using DevTools. | 1645 // Maps of files edited locally using DevTools. |
| 1646 const char kDevToolsEditedFiles[] = "devtools.edited_files"; | 1646 const char kDevToolsEditedFiles[] = "devtools.edited_files"; |
| 1647 | 1647 |
| 1648 // List of file system paths added in DevTools. |
| 1649 const char kDevToolsFileSystemPaths[] = "devtools.file_system_paths"; |
| 1650 |
| 1648 // Integer location of the horizontal split bar in the browser view. | 1651 // Integer location of the horizontal split bar in the browser view. |
| 1649 const char kDevToolsHSplitLocation[] = "devtools.split_location"; | 1652 const char kDevToolsHSplitLocation[] = "devtools.split_location"; |
| 1650 | 1653 |
| 1651 // A boolean specifying whether dev tools window should be opened docked. | 1654 // A boolean specifying whether dev tools window should be opened docked. |
| 1652 const char kDevToolsOpenDocked[] = "devtools.open_docked"; | 1655 const char kDevToolsOpenDocked[] = "devtools.open_docked"; |
| 1653 | 1656 |
| 1654 #if defined(OS_ANDROID) | 1657 #if defined(OS_ANDROID) |
| 1655 // A boolean specifying whether remote dev tools debugging is enabled. | 1658 // A boolean specifying whether remote dev tools debugging is enabled. |
| 1656 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; | 1659 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; |
| 1657 #endif | 1660 #endif |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2226 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2229 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2227 | 2230 |
| 2228 #if defined(OS_CHROMEOS) | 2231 #if defined(OS_CHROMEOS) |
| 2229 // The RLZ brand code, if enabled. | 2232 // The RLZ brand code, if enabled. |
| 2230 const char kRLZBrand[] = "rlz.brand"; | 2233 const char kRLZBrand[] = "rlz.brand"; |
| 2231 // Whether RLZ pings are disabled. | 2234 // Whether RLZ pings are disabled. |
| 2232 const char kRLZDisabled[] = "rlz.disabled"; | 2235 const char kRLZDisabled[] = "rlz.disabled"; |
| 2233 #endif | 2236 #endif |
| 2234 | 2237 |
| 2235 } // namespace prefs | 2238 } // namespace prefs |
| OLD | NEW |