Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(429)

Side by Side Diff: chrome/common/pref_names.cc

Issue 2284083002: [DevTools] A setting for TCP discovery enablement (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1516 matching lines...) Expand 10 before | Expand all | Expand 10 after
1527 "devtools.port_forwarding_enabled"; 1527 "devtools.port_forwarding_enabled";
1528 1528
1529 // A boolean specifying whether default port forwarding configuration has been 1529 // A boolean specifying whether default port forwarding configuration has been
1530 // set. 1530 // set.
1531 const char kDevToolsPortForwardingDefaultSet[] = 1531 const char kDevToolsPortForwardingDefaultSet[] =
1532 "devtools.port_forwarding_default_set"; 1532 "devtools.port_forwarding_default_set";
1533 1533
1534 // A dictionary of port->location pairs for port forwarding. 1534 // A dictionary of port->location pairs for port forwarding.
1535 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; 1535 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config";
1536 1536
1537 // A boolean specifying whether or not Chrome will scan for available remote
1538 // debugging targets
dgozman 2016/08/26 23:31:43 Full stop please.
eostroukhov 2016/08/29 22:06:31 Done.
1539 const char kDevToolsTCPDiscoveryEnabled[] = "devtools.tcp_discovery_enabled";
1540
1537 // A list of strings representing devtools target discovery servers. 1541 // A list of strings representing devtools target discovery servers.
1538 const char kDevToolsTargetDiscoveryConfig[] = 1542 const char kDevToolsTCPDiscoveryConfig[] = "devtools.tcp_discovery_config";
1539 "devtools.target_discovery_config";
1540 1543
1541 // A dictionary with generic DevTools settings. 1544 // A dictionary with generic DevTools settings.
1542 const char kDevToolsPreferences[] = "devtools.preferences"; 1545 const char kDevToolsPreferences[] = "devtools.preferences";
1543 1546
1544 #if defined(OS_ANDROID) 1547 #if defined(OS_ANDROID)
1545 // A boolean specifying whether remote dev tools debugging is enabled. 1548 // A boolean specifying whether remote dev tools debugging is enabled.
1546 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; 1549 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled";
1547 #endif 1550 #endif
1548 1551
1549 // Local hash of authentication password, used for off-line authentication 1552 // Local hash of authentication password, used for off-line authentication
(...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after
2258 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; 2261 const char kOriginTrialPublicKey[] = "origin_trials.public_key";
2259 2262
2260 // A list of origin trial features to disable by policy. 2263 // A list of origin trial features to disable by policy.
2261 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; 2264 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features";
2262 2265
2263 // Policy that indicates the state of updates for the binary components. 2266 // Policy that indicates the state of updates for the binary components.
2264 const char kComponentUpdatesEnabled[] = 2267 const char kComponentUpdatesEnabled[] =
2265 "component_updates.component_updates_enabled"; 2268 "component_updates.component_updates_enabled";
2266 2269
2267 } // namespace prefs 2270 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698