OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/basictypes.h" | 7 #include "base/basictypes.h" |
8 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 1430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1441 // Dictionary that maps Geolocation network provider server URLs to | 1441 // Dictionary that maps Geolocation network provider server URLs to |
1442 // corresponding access token. | 1442 // corresponding access token. |
1443 const char kGeolocationAccessToken[] = "geolocation.access_token"; | 1443 const char kGeolocationAccessToken[] = "geolocation.access_token"; |
1444 | 1444 |
1445 // Whether PasswordForms have been migrated from the WedDataService to the | 1445 // Whether PasswordForms have been migrated from the WedDataService to the |
1446 // LoginDatabase. | 1446 // LoginDatabase. |
1447 const char kLoginDatabaseMigrated[] = "login_database.migrated"; | 1447 const char kLoginDatabaseMigrated[] = "login_database.migrated"; |
1448 | 1448 |
1449 // Boolean that indicates whether to allow firewall traversal while trying to | 1449 // Boolean that indicates whether to allow firewall traversal while trying to |
1450 // establish the initial connection from the client or host. | 1450 // establish the initial connection from the client or host. |
1451 const char kRemoteAccessClientFirewallTraversal[] = | |
1452 "remote_access.client_firewall_traversal"; | |
1453 const char kRemoteAccessHostFirewallTraversal[] = | 1451 const char kRemoteAccessHostFirewallTraversal[] = |
1454 "remote_access.host_firewall_traversal"; | 1452 "remote_access.host_firewall_traversal"; |
1455 | 1453 |
1456 // The root URL of the cloud print service. | 1454 // The root URL of the cloud print service. |
1457 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; | 1455 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; |
1458 | 1456 |
1459 // The URL to use to sign in to cloud print. | 1457 // The URL to use to sign in to cloud print. |
1460 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; | 1458 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; |
1461 | 1459 |
1462 // The last requested size of the dialog as it was closed. | 1460 // The last requested size of the dialog as it was closed. |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1627 | 1625 |
1628 // String that represents the recovery component last downloaded version. This | 1626 // String that represents the recovery component last downloaded version. This |
1629 // takes the usual 'a.b.c.d' notation. | 1627 // takes the usual 'a.b.c.d' notation. |
1630 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1628 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
1631 | 1629 |
1632 // String that stores the component updater last known state. This is used for | 1630 // String that stores the component updater last known state. This is used for |
1633 // troubleshooting. | 1631 // troubleshooting. |
1634 const char kComponentUpdaterState[] = "component_updater.state"; | 1632 const char kComponentUpdaterState[] = "component_updater.state"; |
1635 | 1633 |
1636 } // namespace prefs | 1634 } // namespace prefs |
OLD | NEW |