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/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| (...skipping 1921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1932 // Boolean that specifies if we should show a bubble in the new tab page. | 1932 // Boolean that specifies if we should show a bubble in the new tab page. |
| 1933 // The bubble is used to confirm that the user is signed into sync. | 1933 // The bubble is used to confirm that the user is signed into sync. |
| 1934 const char kSignInPromoShowNTPBubble[] = "sync_promo.show_ntp_bubble"; | 1934 const char kSignInPromoShowNTPBubble[] = "sync_promo.show_ntp_bubble"; |
| 1935 #endif | 1935 #endif |
| 1936 | 1936 |
| 1937 // Integer that specifies the number of times that we have shown the tutorial | 1937 // Integer that specifies the number of times that we have shown the tutorial |
| 1938 // card in the profile avatar bubble. | 1938 // card in the profile avatar bubble. |
| 1939 const char kProfileAvatarTutorialShown[] = | 1939 const char kProfileAvatarTutorialShown[] = |
| 1940 "profile.avatar_bubble_tutorial_shown"; | 1940 "profile.avatar_bubble_tutorial_shown"; |
| 1941 | 1941 |
| 1942 // Boolean that specifies whether we have shown the user manager tutorial. | |
| 1943 const char kProfileUserManagerTutorialShown[] = | |
| 1944 "profile.user_manager_tutorial_shown"; | |
|
gab
2014/03/14 16:43:58
This is the LOCAL STATE section (see line 1305) is
noms (inactive)
2014/03/14 18:24:36
Done. Moved these 4 preferences next to their prof
| |
| 1945 | |
| 1942 // Time when the user's GAIA info was last updated (represented as an int64). | 1946 // Time when the user's GAIA info was last updated (represented as an int64). |
| 1943 const char kProfileGAIAInfoUpdateTime[] = "profile.gaia_info_update_time"; | 1947 const char kProfileGAIAInfoUpdateTime[] = "profile.gaia_info_update_time"; |
| 1944 | 1948 |
| 1945 // The URL from which the GAIA profile picture was downloaded. This is cached to | 1949 // The URL from which the GAIA profile picture was downloaded. This is cached to |
| 1946 // prevent the same picture from being downloaded multiple times. | 1950 // prevent the same picture from being downloaded multiple times. |
| 1947 const char kProfileGAIAInfoPictureURL[] = "profile.gaia_info_picture_url"; | 1951 const char kProfileGAIAInfoPictureURL[] = "profile.gaia_info_picture_url"; |
| 1948 | 1952 |
| 1949 // Create web application shortcut dialog preferences. | 1953 // Create web application shortcut dialog preferences. |
| 1950 const char kWebAppCreateOnDesktop[] = "browser.web_app.create_on_desktop"; | 1954 const char kWebAppCreateOnDesktop[] = "browser.web_app.create_on_desktop"; |
| 1951 const char kWebAppCreateInAppsMenu[] = "browser.web_app.create_in_apps_menu"; | 1955 const char kWebAppCreateInAppsMenu[] = "browser.web_app.create_in_apps_menu"; |
| (...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2663 // Each list item is a dictionary containing a "url", a "provider_title" and | 2667 // Each list item is a dictionary containing a "url", a "provider_title" and |
| 2664 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2668 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2665 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2669 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2666 // title or an empty string if the bookmark node was removed. | 2670 // title or an empty string if the bookmark node was removed. |
| 2667 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2671 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2668 #endif | 2672 #endif |
| 2669 | 2673 |
| 2670 // Whether DNS Quick Check is disabled in proxy resolution. | 2674 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2671 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2675 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2672 } // namespace prefs | 2676 } // namespace prefs |
| OLD | NEW |