| 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/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 1519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1530 "devtools.port_forwarding_enabled"; | 1530 "devtools.port_forwarding_enabled"; |
| 1531 | 1531 |
| 1532 // A boolean specifying whether default port forwarding configuration has been | 1532 // A boolean specifying whether default port forwarding configuration has been |
| 1533 // set. | 1533 // set. |
| 1534 const char kDevToolsPortForwardingDefaultSet[] = | 1534 const char kDevToolsPortForwardingDefaultSet[] = |
| 1535 "devtools.port_forwarding_default_set"; | 1535 "devtools.port_forwarding_default_set"; |
| 1536 | 1536 |
| 1537 // A dictionary of port->location pairs for port forwarding. | 1537 // A dictionary of port->location pairs for port forwarding. |
| 1538 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; | 1538 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; |
| 1539 | 1539 |
| 1540 // A boolean specifying whether or not Chrome will scan for available remote |
| 1541 // debugging targets. |
| 1542 const char kDevToolsDiscoverTCPTargetsEnabled[] = |
| 1543 "devtools.discover_tcp_targets"; |
| 1544 |
| 1540 // A list of strings representing devtools target discovery servers. | 1545 // A list of strings representing devtools target discovery servers. |
| 1541 const char kDevToolsTargetDiscoveryConfig[] = | 1546 const char kDevToolsTCPDiscoveryConfig[] = "devtools.tcp_discovery_config"; |
| 1542 "devtools.target_discovery_config"; | |
| 1543 | 1547 |
| 1544 // A dictionary with generic DevTools settings. | 1548 // A dictionary with generic DevTools settings. |
| 1545 const char kDevToolsPreferences[] = "devtools.preferences"; | 1549 const char kDevToolsPreferences[] = "devtools.preferences"; |
| 1546 | 1550 |
| 1547 #if defined(OS_ANDROID) | 1551 #if defined(OS_ANDROID) |
| 1548 // A boolean specifying whether remote dev tools debugging is enabled. | 1552 // A boolean specifying whether remote dev tools debugging is enabled. |
| 1549 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; | 1553 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; |
| 1550 #endif | 1554 #endif |
| 1551 | 1555 |
| 1552 // Local hash of authentication password, used for off-line authentication | 1556 // Local hash of authentication password, used for off-line authentication |
| (...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2261 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2265 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2262 | 2266 |
| 2263 // A list of origin trial features to disable by policy. | 2267 // A list of origin trial features to disable by policy. |
| 2264 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2268 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2265 | 2269 |
| 2266 // Policy that indicates the state of updates for the binary components. | 2270 // Policy that indicates the state of updates for the binary components. |
| 2267 const char kComponentUpdatesEnabled[] = | 2271 const char kComponentUpdatesEnabled[] = |
| 2268 "component_updates.component_updates_enabled"; | 2272 "component_updates.component_updates_enabled"; |
| 2269 | 2273 |
| 2270 } // namespace prefs | 2274 } // namespace prefs |
| OLD | NEW |