Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Side by Side Diff: chrome/common/pref_names.cc

Issue 199533004: [Mac, Win] Show a user manager tutorial once per profile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: gab & nikita comments Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 1192 matching lines...) Expand 10 before | Expand all | Expand 10 after
1203 // Profile avatar and name 1203 // Profile avatar and name
1204 const char kProfileAvatarIndex[] = "profile.avatar_index"; 1204 const char kProfileAvatarIndex[] = "profile.avatar_index";
1205 const char kProfileName[] = "profile.name"; 1205 const char kProfileName[] = "profile.name";
1206 1206
1207 // Whether the profile is managed. 1207 // Whether the profile is managed.
1208 const char kProfileIsManaged[] = "profile.is_managed"; 1208 const char kProfileIsManaged[] = "profile.is_managed";
1209 1209
1210 // The managed user ID. 1210 // The managed user ID.
1211 const char kManagedUserId[] = "profile.managed_user_id"; 1211 const char kManagedUserId[] = "profile.managed_user_id";
1212 1212
1213 // Time when the user's GAIA info was last updated (represented as an int64).
Alexei Svitkine (slow) 2014/03/14 21:04:40 Is this local machine time or something more autho
noms (inactive) 2014/03/17 21:52:23 Done.
1214 const char kProfileGAIAInfoUpdateTime[] = "profile.gaia_info_update_time";
1215
1216 // The URL from which the GAIA profile picture was downloaded. This is cached to
1217 // prevent the same picture from being downloaded multiple times.
1218 const char kProfileGAIAInfoPictureURL[] = "profile.gaia_info_picture_url";
1219
1220 // Integer that specifies the number of times that we have shown the tutorial
1221 // card in the profile avatar bubble.
1222 const char kProfileAvatarTutorialShown[] =
1223 "profile.avatar_bubble_tutorial_shown";
1224
1225 // Boolean that specifies whether we have shown the user manager tutorial.
1226 const char kProfileUserManagerTutorialShown[] =
1227 "profile.user_manager_tutorial_shown";
1228
1213 // Indicates if we've already shown a notification that high contrast 1229 // Indicates if we've already shown a notification that high contrast
1214 // mode is on, recommending high-contrast extensions and themes. 1230 // mode is on, recommending high-contrast extensions and themes.
1215 const char kInvertNotificationShown[] = "invert_notification_version_2_shown"; 1231 const char kInvertNotificationShown[] = "invert_notification_version_2_shown";
1216 1232
1217 // Boolean controlling whether printing is enabled. 1233 // Boolean controlling whether printing is enabled.
1218 const char kPrintingEnabled[] = "printing.enabled"; 1234 const char kPrintingEnabled[] = "printing.enabled";
1219 1235
1220 // Boolean controlling whether print preview is disabled. 1236 // Boolean controlling whether print preview is disabled.
1221 const char kPrintPreviewDisabled[] = "printing.print_preview_disabled"; 1237 const char kPrintPreviewDisabled[] = "printing.print_preview_disabled";
1222 1238
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after
1927 // This preference is specified in the master preference file to suppress the 1943 // This preference is specified in the master preference file to suppress the
1928 // sign in promo for some installations. 1944 // sign in promo for some installations.
1929 const char kSignInPromoShowOnFirstRunAllowed[] = 1945 const char kSignInPromoShowOnFirstRunAllowed[] =
1930 "sync_promo.show_on_first_run_allowed"; 1946 "sync_promo.show_on_first_run_allowed";
1931 1947
1932 // Boolean that specifies if we should show a bubble in the new tab page. 1948 // 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. 1949 // The bubble is used to confirm that the user is signed into sync.
1934 const char kSignInPromoShowNTPBubble[] = "sync_promo.show_ntp_bubble"; 1950 const char kSignInPromoShowNTPBubble[] = "sync_promo.show_ntp_bubble";
1935 #endif 1951 #endif
1936 1952
1937 // Integer that specifies the number of times that we have shown the tutorial
1938 // card in the profile avatar bubble.
1939 const char kProfileAvatarTutorialShown[] =
1940 "profile.avatar_bubble_tutorial_shown";
1941
1942 // Time when the user's GAIA info was last updated (represented as an int64).
1943 const char kProfileGAIAInfoUpdateTime[] = "profile.gaia_info_update_time";
1944
1945 // The URL from which the GAIA profile picture was downloaded. This is cached to
1946 // prevent the same picture from being downloaded multiple times.
1947 const char kProfileGAIAInfoPictureURL[] = "profile.gaia_info_picture_url";
1948
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";
1952 const char kWebAppCreateInQuickLaunchBar[] = 1956 const char kWebAppCreateInQuickLaunchBar[] =
1953 "browser.web_app.create_in_quick_launch_bar"; 1957 "browser.web_app.create_in_quick_launch_bar";
1954 1958
1955 // Dictionary that maps Geolocation network provider server URLs to 1959 // Dictionary that maps Geolocation network provider server URLs to
1956 // corresponding access token. 1960 // corresponding access token.
1957 const char kGeolocationAccessToken[] = "geolocation.access_token"; 1961 const char kGeolocationAccessToken[] = "geolocation.access_token";
1958 1962
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« chrome/browser/ui/views/user_manager_view.cc ('K') | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698