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 1458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1469 const char kSyncPromoShowOnFirstRunAllowed[] = | 1469 const char kSyncPromoShowOnFirstRunAllowed[] = |
1470 "sync_promo.show_on_first_run_allowed"; | 1470 "sync_promo.show_on_first_run_allowed"; |
1471 | 1471 |
1472 // Boolean that specifies if we should show a bubble in the new tab page. | 1472 // Boolean that specifies if we should show a bubble in the new tab page. |
1473 // The bubble is used to confirm that the user is signed into sync. | 1473 // The bubble is used to confirm that the user is signed into sync. |
1474 const char kSyncPromoShowNTPBubble[] = "sync_promo.show_ntp_bubble"; | 1474 const char kSyncPromoShowNTPBubble[] = "sync_promo.show_ntp_bubble"; |
1475 | 1475 |
1476 // Time when the user's GAIA info was last updated (represented as an int64). | 1476 // Time when the user's GAIA info was last updated (represented as an int64). |
1477 const char kProfileGAIAInfoUpdateTime[] = "profile.gaia_info_update_time"; | 1477 const char kProfileGAIAInfoUpdateTime[] = "profile.gaia_info_update_time"; |
1478 | 1478 |
| 1479 // The URL from which the GAIA profile picture was downloaded. This is cached to |
| 1480 // prevent the same picture from being downloaded multiple times. |
| 1481 const char kProfileGAIAInfoPictureURL[] = "profile.gaia_info_picture_url"; |
| 1482 |
1479 // Create web application shortcut dialog preferences. | 1483 // Create web application shortcut dialog preferences. |
1480 const char kWebAppCreateOnDesktop[] = "browser.web_app.create_on_desktop"; | 1484 const char kWebAppCreateOnDesktop[] = "browser.web_app.create_on_desktop"; |
1481 const char kWebAppCreateInAppsMenu[] = "browser.web_app.create_in_apps_menu"; | 1485 const char kWebAppCreateInAppsMenu[] = "browser.web_app.create_in_apps_menu"; |
1482 const char kWebAppCreateInQuickLaunchBar[] = | 1486 const char kWebAppCreateInQuickLaunchBar[] = |
1483 "browser.web_app.create_in_quick_launch_bar"; | 1487 "browser.web_app.create_in_quick_launch_bar"; |
1484 | 1488 |
1485 // Dictionary that maps Geolocation network provider server URLs to | 1489 // Dictionary that maps Geolocation network provider server URLs to |
1486 // corresponding access token. | 1490 // corresponding access token. |
1487 const char kGeolocationAccessToken[] = "geolocation.access_token"; | 1491 const char kGeolocationAccessToken[] = "geolocation.access_token"; |
1488 | 1492 |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1676 | 1680 |
1677 // String that represents the recovery component last downloaded version. This | 1681 // String that represents the recovery component last downloaded version. This |
1678 // takes the usual 'a.b.c.d' notation. | 1682 // takes the usual 'a.b.c.d' notation. |
1679 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1683 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
1680 | 1684 |
1681 // String that stores the component updater last known state. This is used for | 1685 // String that stores the component updater last known state. This is used for |
1682 // troubleshooting. | 1686 // troubleshooting. |
1683 const char kComponentUpdaterState[] = "component_updater.state"; | 1687 const char kComponentUpdaterState[] = "component_updater.state"; |
1684 | 1688 |
1685 } // namespace prefs | 1689 } // namespace prefs |
OLD | NEW |