| 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 1520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1531 "devtools.port_forwarding_enabled"; | 1531 "devtools.port_forwarding_enabled"; |
| 1532 | 1532 |
| 1533 // A boolean specifying whether default port forwarding configuration has been | 1533 // A boolean specifying whether default port forwarding configuration has been |
| 1534 // set. | 1534 // set. |
| 1535 const char kDevToolsPortForwardingDefaultSet[] = | 1535 const char kDevToolsPortForwardingDefaultSet[] = |
| 1536 "devtools.port_forwarding_default_set"; | 1536 "devtools.port_forwarding_default_set"; |
| 1537 | 1537 |
| 1538 // A dictionary of port->location pairs for port forwarding. | 1538 // A dictionary of port->location pairs for port forwarding. |
| 1539 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; | 1539 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; |
| 1540 | 1540 |
| 1541 // A list of strings representing devtools target discovery servers. |
| 1542 const char kDevToolsTargetDiscoveryConfig[] = |
| 1543 "devtools.target_discovery_config"; |
| 1544 |
| 1541 // A dictionary with generic DevTools settings. | 1545 // A dictionary with generic DevTools settings. |
| 1542 const char kDevToolsPreferences[] = "devtools.preferences"; | 1546 const char kDevToolsPreferences[] = "devtools.preferences"; |
| 1543 | 1547 |
| 1544 #if defined(OS_ANDROID) | 1548 #if defined(OS_ANDROID) |
| 1545 // A boolean specifying whether remote dev tools debugging is enabled. | 1549 // A boolean specifying whether remote dev tools debugging is enabled. |
| 1546 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; | 1550 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; |
| 1547 #endif | 1551 #endif |
| 1548 | 1552 |
| 1549 // Local hash of authentication password, used for off-line authentication | 1553 // Local hash of authentication password, used for off-line authentication |
| 1550 // when on-line authentication is not available. | 1554 // when on-line authentication is not available. |
| (...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2254 #endif | 2258 #endif |
| 2255 | 2259 |
| 2256 // The base64-encoded representation of the public key to use to validate origin | 2260 // The base64-encoded representation of the public key to use to validate origin |
| 2257 // trial token signatures. | 2261 // trial token signatures. |
| 2258 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2262 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2259 | 2263 |
| 2260 // A list of origin trial features to disable by policy. | 2264 // A list of origin trial features to disable by policy. |
| 2261 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2265 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2262 | 2266 |
| 2263 } // namespace prefs | 2267 } // namespace prefs |
| OLD | NEW |