| 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 1594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1605 "devtools.port_forwarding_default_set"; | 1605 "devtools.port_forwarding_default_set"; |
| 1606 | 1606 |
| 1607 // A dictionary of port->location pairs for port forwarding. | 1607 // A dictionary of port->location pairs for port forwarding. |
| 1608 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; | 1608 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; |
| 1609 | 1609 |
| 1610 // A boolean specifying whether or not Chrome will scan for available remote | 1610 // A boolean specifying whether or not Chrome will scan for available remote |
| 1611 // debugging targets. | 1611 // debugging targets. |
| 1612 const char kDevToolsDiscoverTCPTargetsEnabled[] = | 1612 const char kDevToolsDiscoverTCPTargetsEnabled[] = |
| 1613 "devtools.discover_tcp_targets"; | 1613 "devtools.discover_tcp_targets"; |
| 1614 | 1614 |
| 1615 // A list of strings representing devtools target discovery servers. | |
| 1616 const char kDevToolsTCPDiscoveryConfig[] = "devtools.tcp_discovery_config"; | |
| 1617 | |
| 1618 // A dictionary with generic DevTools settings. | 1615 // A dictionary with generic DevTools settings. |
| 1619 const char kDevToolsPreferences[] = "devtools.preferences"; | 1616 const char kDevToolsPreferences[] = "devtools.preferences"; |
| 1620 | 1617 |
| 1621 #if defined(OS_ANDROID) | 1618 #if defined(OS_ANDROID) |
| 1622 // A boolean specifying whether remote dev tools debugging is enabled. | 1619 // A boolean specifying whether remote dev tools debugging is enabled. |
| 1623 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; | 1620 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; |
| 1624 #endif | 1621 #endif |
| 1625 | 1622 |
| 1623 // A boolean to allow force-installed extensions to use the debugging API |
| 1624 // silently. |
| 1625 const char kDevToolsSilentManagedDebuggerAPIEnabled[] = |
| 1626 "devtools.silent_managed_debugger_api"; |
| 1627 |
| 1628 // A list of strings representing devtools target discovery servers. |
| 1629 const char kDevToolsTCPDiscoveryConfig[] = "devtools.tcp_discovery_config"; |
| 1630 |
| 1626 // Local hash of authentication password, used for off-line authentication | 1631 // Local hash of authentication password, used for off-line authentication |
| 1627 // when on-line authentication is not available. | 1632 // when on-line authentication is not available. |
| 1628 const char kGoogleServicesPasswordHash[] = "google.services.password_hash"; | 1633 const char kGoogleServicesPasswordHash[] = "google.services.password_hash"; |
| 1629 | 1634 |
| 1630 #if !defined(OS_ANDROID) | 1635 #if !defined(OS_ANDROID) |
| 1631 // Tracks the number of times that we have shown the sign in promo at startup. | 1636 // Tracks the number of times that we have shown the sign in promo at startup. |
| 1632 const char kSignInPromoStartupCount[] = "sync_promo.startup_count"; | 1637 const char kSignInPromoStartupCount[] = "sync_promo.startup_count"; |
| 1633 | 1638 |
| 1634 // Boolean tracking whether the user chose to skip the sign in promo. | 1639 // Boolean tracking whether the user chose to skip the sign in promo. |
| 1635 const char kSignInPromoUserSkipped[] = "sync_promo.user_skipped"; | 1640 const char kSignInPromoUserSkipped[] = "sync_promo.user_skipped"; |
| (...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2470 | 2475 |
| 2471 // Number of times user has seen the "desktop to iOS" history page promotion. | 2476 // Number of times user has seen the "desktop to iOS" history page promotion. |
| 2472 const char kNumberHistoryPageIOSPromoShown[] = | 2477 const char kNumberHistoryPageIOSPromoShown[] = |
| 2473 "history_page_ios_promo_shown_count"; | 2478 "history_page_ios_promo_shown_count"; |
| 2474 | 2479 |
| 2475 // True if the user has dismissed the "desktop to iOS" history page promotion. | 2480 // True if the user has dismissed the "desktop to iOS" history page promotion. |
| 2476 const char kHistoryPageIOSPromoDismissed[] = "history_page_ios_promo_dismissed"; | 2481 const char kHistoryPageIOSPromoDismissed[] = "history_page_ios_promo_dismissed"; |
| 2477 #endif | 2482 #endif |
| 2478 | 2483 |
| 2479 } // namespace prefs | 2484 } // namespace prefs |
| OLD | NEW |