| 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 1614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1625 const char kNtpAppPageNames[] = "ntp.app_page_names"; | 1625 const char kNtpAppPageNames[] = "ntp.app_page_names"; |
| 1626 | 1626 |
| 1627 const char kDevToolsDisabled[] = "devtools.disabled"; | 1627 const char kDevToolsDisabled[] = "devtools.disabled"; |
| 1628 | 1628 |
| 1629 // A string specifying the dock location (either 'bottom' or 'right'). | 1629 // A string specifying the dock location (either 'bottom' or 'right'). |
| 1630 const char kDevToolsDockSide[] = "devtools.dock_side"; | 1630 const char kDevToolsDockSide[] = "devtools.dock_side"; |
| 1631 | 1631 |
| 1632 // Maps of files edited locally using DevTools. | 1632 // Maps of files edited locally using DevTools. |
| 1633 const char kDevToolsEditedFiles[] = "devtools.edited_files"; | 1633 const char kDevToolsEditedFiles[] = "devtools.edited_files"; |
| 1634 | 1634 |
| 1635 // List of file system paths added in DevTools. |
| 1636 const char kDevToolsFilesystemPaths[] = "devtools.filesystem_paths"; |
| 1637 |
| 1635 // Integer location of the horizontal split bar in the browser view. | 1638 // Integer location of the horizontal split bar in the browser view. |
| 1636 const char kDevToolsHSplitLocation[] = "devtools.split_location"; | 1639 const char kDevToolsHSplitLocation[] = "devtools.split_location"; |
| 1637 | 1640 |
| 1638 // A boolean specifying whether dev tools window should be opened docked. | 1641 // A boolean specifying whether dev tools window should be opened docked. |
| 1639 const char kDevToolsOpenDocked[] = "devtools.open_docked"; | 1642 const char kDevToolsOpenDocked[] = "devtools.open_docked"; |
| 1640 | 1643 |
| 1641 #if defined(OS_ANDROID) | 1644 #if defined(OS_ANDROID) |
| 1642 // A boolean specifying whether remote dev tools debugging is enabled. | 1645 // A boolean specifying whether remote dev tools debugging is enabled. |
| 1643 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; | 1646 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; |
| 1644 #endif | 1647 #endif |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2208 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2211 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2209 | 2212 |
| 2210 #if defined(OS_CHROMEOS) | 2213 #if defined(OS_CHROMEOS) |
| 2211 // The RLZ brand code, if enabled. | 2214 // The RLZ brand code, if enabled. |
| 2212 const char kRLZBrand[] = "rlz.brand"; | 2215 const char kRLZBrand[] = "rlz.brand"; |
| 2213 // Whether RLZ pings are disabled. | 2216 // Whether RLZ pings are disabled. |
| 2214 const char kRLZDisabled[] = "rlz.disabled"; | 2217 const char kRLZDisabled[] = "rlz.disabled"; |
| 2215 #endif | 2218 #endif |
| 2216 | 2219 |
| 2217 } // namespace prefs | 2220 } // namespace prefs |
| OLD | NEW |