Chromium Code Reviews| 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 pathes mapped by DevTools. | |
| 1636 const char kDevToolsSavedFileSystemPathes[] = | |
| 1637 "devtools.saved_file_system_pathes"; | |
|
pfeldman
2012/12/24 19:01:03
paths
| |
| 1638 | |
| 1635 // Integer location of the horizontal split bar in the browser view. | 1639 // Integer location of the horizontal split bar in the browser view. |
| 1636 const char kDevToolsHSplitLocation[] = "devtools.split_location"; | 1640 const char kDevToolsHSplitLocation[] = "devtools.split_location"; |
| 1637 | 1641 |
| 1638 // A boolean specifying whether dev tools window should be opened docked. | 1642 // A boolean specifying whether dev tools window should be opened docked. |
| 1639 const char kDevToolsOpenDocked[] = "devtools.open_docked"; | 1643 const char kDevToolsOpenDocked[] = "devtools.open_docked"; |
| 1640 | 1644 |
| 1641 #if defined(OS_ANDROID) | 1645 #if defined(OS_ANDROID) |
| 1642 // A boolean specifying whether remote dev tools debugging is enabled. | 1646 // A boolean specifying whether remote dev tools debugging is enabled. |
| 1643 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; | 1647 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; |
| 1644 #endif | 1648 #endif |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2206 // 64-bit serialization of the time last policy usage statistics were collected | 2210 // 64-bit serialization of the time last policy usage statistics were collected |
| 2207 // by UMA_HISTOGRAM_ENUMERATION. | 2211 // by UMA_HISTOGRAM_ENUMERATION. |
| 2208 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2212 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2209 | 2213 |
| 2210 #if defined(OS_CHROMEOS) | 2214 #if defined(OS_CHROMEOS) |
| 2211 // The RLZ brand code, if enabled. | 2215 // The RLZ brand code, if enabled. |
| 2212 const char kRLZBrand[] = "rlz.brand"; | 2216 const char kRLZBrand[] = "rlz.brand"; |
| 2213 #endif | 2217 #endif |
| 2214 | 2218 |
| 2215 } // namespace prefs | 2219 } // namespace prefs |
| OLD | NEW |