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/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/features.h" | 9 #include "chrome/common/features.h" |
| 10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
| (...skipping 1582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1593 "devtools.port_forwarding_default_set"; | 1593 "devtools.port_forwarding_default_set"; |
| 1594 | 1594 |
| 1595 // A dictionary of port->location pairs for port forwarding. | 1595 // A dictionary of port->location pairs for port forwarding. |
| 1596 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; | 1596 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; |
| 1597 | 1597 |
| 1598 // A boolean specifying whether or not Chrome will scan for available remote | 1598 // A boolean specifying whether or not Chrome will scan for available remote |
| 1599 // debugging targets. | 1599 // debugging targets. |
| 1600 const char kDevToolsDiscoverTCPTargetsEnabled[] = | 1600 const char kDevToolsDiscoverTCPTargetsEnabled[] = |
| 1601 "devtools.discover_tcp_targets"; | 1601 "devtools.discover_tcp_targets"; |
| 1602 | 1602 |
| 1603 // A list of strings representing devtools target discovery servers. | |
| 1604 const char kDevToolsTCPDiscoveryConfig[] = "devtools.tcp_discovery_config"; | |
| 1605 | |
| 1606 // A dictionary with generic DevTools settings. | 1603 // A dictionary with generic DevTools settings. |
| 1607 const char kDevToolsPreferences[] = "devtools.preferences"; | 1604 const char kDevToolsPreferences[] = "devtools.preferences"; |
| 1608 | 1605 |
| 1609 #if defined(OS_ANDROID) | 1606 #if defined(OS_ANDROID) |
| 1610 // A boolean specifying whether remote dev tools debugging is enabled. | 1607 // A boolean specifying whether remote dev tools debugging is enabled. |
| 1611 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; | 1608 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; |
| 1612 #endif | 1609 #endif |
| 1613 | 1610 |
| 1611 // A boolean linked with the kSilentDebuggerExtensionAPI command line switch for | |
|
Devlin
2017/02/17 20:51:31
nit: I'd rephrase this as just:
"A boolean to allo
pfeldman
2017/02/17 21:14:38
Done.
| |
| 1612 // the enterprise policy. | |
| 1613 const char kDevToolsSilentManagedDebuggerAPIEnabled[] = | |
| 1614 "devtools.silent_managed_debugger_api"; | |
| 1615 | |
| 1616 // A list of strings representing devtools target discovery servers. | |
| 1617 const char kDevToolsTCPDiscoveryConfig[] = "devtools.tcp_discovery_config"; | |
| 1618 | |
| 1614 // Local hash of authentication password, used for off-line authentication | 1619 // Local hash of authentication password, used for off-line authentication |
| 1615 // when on-line authentication is not available. | 1620 // when on-line authentication is not available. |
| 1616 const char kGoogleServicesPasswordHash[] = "google.services.password_hash"; | 1621 const char kGoogleServicesPasswordHash[] = "google.services.password_hash"; |
| 1617 | 1622 |
| 1618 #if !defined(OS_ANDROID) | 1623 #if !defined(OS_ANDROID) |
| 1619 // Tracks the number of times that we have shown the sign in promo at startup. | 1624 // Tracks the number of times that we have shown the sign in promo at startup. |
| 1620 const char kSignInPromoStartupCount[] = "sync_promo.startup_count"; | 1625 const char kSignInPromoStartupCount[] = "sync_promo.startup_count"; |
| 1621 | 1626 |
| 1622 // Boolean tracking whether the user chose to skip the sign in promo. | 1627 // Boolean tracking whether the user chose to skip the sign in promo. |
| 1623 const char kSignInPromoUserSkipped[] = "sync_promo.user_skipped"; | 1628 const char kSignInPromoUserSkipped[] = "sync_promo.user_skipped"; |
| (...skipping 812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2436 | 2441 |
| 2437 // Number of times user has seen the "desktop to iOS" history page promotion. | 2442 // Number of times user has seen the "desktop to iOS" history page promotion. |
| 2438 const char kNumberHistoryPageIOSPromoShown[] = | 2443 const char kNumberHistoryPageIOSPromoShown[] = |
| 2439 "history_page_ios_promo_shown_count"; | 2444 "history_page_ios_promo_shown_count"; |
| 2440 | 2445 |
| 2441 // True if the user has dismissed the "desktop to iOS" history page promotion. | 2446 // True if the user has dismissed the "desktop to iOS" history page promotion. |
| 2442 const char kHistoryPageIOSPromoDismissed[] = "history_page_ios_promo_dismissed"; | 2447 const char kHistoryPageIOSPromoDismissed[] = "history_page_ios_promo_dismissed"; |
| 2443 #endif | 2448 #endif |
| 2444 | 2449 |
| 2445 } // namespace prefs | 2450 } // namespace prefs |
| OLD | NEW |