| 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 1543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1554 | 1554 |
| 1555 // A string specifying the dock location (either 'bottom' or 'right'). | 1555 // A string specifying the dock location (either 'bottom' or 'right'). |
| 1556 const char kDevToolsDockSide[] = "devtools.dock_side"; | 1556 const char kDevToolsDockSide[] = "devtools.dock_side"; |
| 1557 | 1557 |
| 1558 // Integer location of the horizontal split bar in the browser view. | 1558 // Integer location of the horizontal split bar in the browser view. |
| 1559 const char kDevToolsHSplitLocation[] = "devtools.split_location"; | 1559 const char kDevToolsHSplitLocation[] = "devtools.split_location"; |
| 1560 | 1560 |
| 1561 // Integer location of the vertical split bar in the browser view. | 1561 // Integer location of the vertical split bar in the browser view. |
| 1562 const char kDevToolsVSplitLocation[] = "devtools.v_split_location"; | 1562 const char kDevToolsVSplitLocation[] = "devtools.v_split_location"; |
| 1563 | 1563 |
| 1564 #if defined(OS_ANDROID) |
| 1565 // A boolean specifying whether remote dev tools debugging is enabled. |
| 1566 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; |
| 1567 #endif |
| 1568 |
| 1564 // Maps of files edited locally using DevTools. | 1569 // Maps of files edited locally using DevTools. |
| 1565 const char kDevToolsEditedFiles[] = "devtools.edited_files"; | 1570 const char kDevToolsEditedFiles[] = "devtools.edited_files"; |
| 1566 | 1571 |
| 1567 // 64-bit integer serialization of the base::Time when the last sync occurred. | 1572 // 64-bit integer serialization of the base::Time when the last sync occurred. |
| 1568 const char kSyncLastSyncedTime[] = "sync.last_synced_time"; | 1573 const char kSyncLastSyncedTime[] = "sync.last_synced_time"; |
| 1569 | 1574 |
| 1570 // Boolean specifying whether the user finished setting up sync. | 1575 // Boolean specifying whether the user finished setting up sync. |
| 1571 const char kSyncHasSetupCompleted[] = "sync.has_setup_completed"; | 1576 const char kSyncHasSetupCompleted[] = "sync.has_setup_completed"; |
| 1572 | 1577 |
| 1573 // Boolean specifying whether to automatically sync all data types (including | 1578 // Boolean specifying whether to automatically sync all data types (including |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2052 // Tracks the time of the last shown warning. Used to reset | 2057 // Tracks the time of the last shown warning. Used to reset |
| 2053 // |network_profile.warnings_left| after a silence period. | 2058 // |network_profile.warnings_left| after a silence period. |
| 2054 const char kNetworkProfileLastWarningTime[] = | 2059 const char kNetworkProfileLastWarningTime[] = |
| 2055 "network_profile.last_warning_time"; | 2060 "network_profile.last_warning_time"; |
| 2056 | 2061 |
| 2057 // 64-bit serialization of the time last policy usage statistics were collected | 2062 // 64-bit serialization of the time last policy usage statistics were collected |
| 2058 // by UMA_HISTOGRAM_ENUMERATION. | 2063 // by UMA_HISTOGRAM_ENUMERATION. |
| 2059 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2064 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2060 | 2065 |
| 2061 } // namespace prefs | 2066 } // namespace prefs |
| OLD | NEW |