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