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 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1130 // browser on first run. | 1130 // browser on first run. |
1131 const char kImportSearchEngine[] = "import_search_engine"; | 1131 const char kImportSearchEngine[] = "import_search_engine"; |
1132 | 1132 |
1133 // Boolean that specifies whether to import the saved passwords from the default | 1133 // Boolean that specifies whether to import the saved passwords from the default |
1134 // browser on first run. | 1134 // browser on first run. |
1135 const char kImportSavedPasswords[] = "import_saved_passwords"; | 1135 const char kImportSavedPasswords[] = "import_saved_passwords"; |
1136 | 1136 |
1137 // Profile avatar and name | 1137 // Profile avatar and name |
1138 const char kProfileAvatarIndex[] = "profile.avatar_index"; | 1138 const char kProfileAvatarIndex[] = "profile.avatar_index"; |
1139 const char kProfileName[] = "profile.name"; | 1139 const char kProfileName[] = "profile.name"; |
| 1140 // Whether a profile is using a default avatar name (eg. Pickles or Person 1) |
| 1141 // because it was randomly assigned at profile creation time. |
| 1142 const char kProfileUsingDefaultName[] = "profile.using_default_name"; |
| 1143 // Whether a profile is using an avatar without having explicitely chosen it |
| 1144 // (i.e. was assigned by default by legacy profile creation). |
| 1145 const char kProfileUsingDefaultAvatar[] = "profile.using_default_avatar"; |
| 1146 const char kProfileUsingGAIAAvatar[] = "profile.using_gaia_avatar"; |
1140 | 1147 |
1141 // The supervised user ID. | 1148 // The supervised user ID. |
1142 const char kSupervisedUserId[] = "profile.managed_user_id"; | 1149 const char kSupervisedUserId[] = "profile.managed_user_id"; |
1143 | 1150 |
1144 // 64-bit integer serialization of the base::Time when the user's GAIA info | 1151 // 64-bit integer serialization of the base::Time when the user's GAIA info |
1145 // was last updated. | 1152 // was last updated. |
1146 const char kProfileGAIAInfoUpdateTime[] = "profile.gaia_info_update_time"; | 1153 const char kProfileGAIAInfoUpdateTime[] = "profile.gaia_info_update_time"; |
1147 | 1154 |
1148 // The URL from which the GAIA profile picture was downloaded. This is cached to | 1155 // The URL from which the GAIA profile picture was downloaded. This is cached to |
1149 // prevent the same picture from being downloaded multiple times. | 1156 // prevent the same picture from being downloaded multiple times. |
(...skipping 1179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2329 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2336 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2330 #endif | 2337 #endif |
2331 | 2338 |
2332 // Whether DNS Quick Check is disabled in proxy resolution. | 2339 // Whether DNS Quick Check is disabled in proxy resolution. |
2333 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2340 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2334 | 2341 |
2335 // Whether Guest Mode is enabled within the browser. | 2342 // Whether Guest Mode is enabled within the browser. |
2336 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2343 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
2337 | 2344 |
2338 } // namespace prefs | 2345 } // namespace prefs |
OLD | NEW |