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 1184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1195 const char kImportHomepage[] = "import_home_page"; | 1195 const char kImportHomepage[] = "import_home_page"; |
1196 | 1196 |
1197 // Boolean that specifies whether to import the search engine from the default | 1197 // Boolean that specifies whether to import the search engine from the default |
1198 // browser on first run. | 1198 // browser on first run. |
1199 const char kImportSearchEngine[] = "import_search_engine"; | 1199 const char kImportSearchEngine[] = "import_search_engine"; |
1200 | 1200 |
1201 // Boolean that specifies whether to import the saved passwords from the default | 1201 // Boolean that specifies whether to import the saved passwords from the default |
1202 // browser on first run. | 1202 // browser on first run. |
1203 const char kImportSavedPasswords[] = "import_saved_passwords"; | 1203 const char kImportSavedPasswords[] = "import_saved_passwords"; |
1204 | 1204 |
1205 // The URL of the enterprise web store, which is a site trusted by the | |
1206 // enterprise admin. Users can install apps & extensions from this site | |
1207 // without scary warnings. | |
1208 const char kEnterpriseWebStoreURL[] = "webstore.enterprise_store_url"; | |
1209 | |
1210 // The name of the enterprise web store, to be shown to the user. | |
1211 const char kEnterpriseWebStoreName[] = "webstore.enterprise_store_name"; | |
1212 | |
1213 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 1205 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
1214 // The local profile id for this profile. | 1206 // The local profile id for this profile. |
1215 const char kLocalProfileId[] = "profile.local_profile_id"; | 1207 const char kLocalProfileId[] = "profile.local_profile_id"; |
1216 | 1208 |
1217 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged | 1209 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged |
1218 // with the local profile id yet. (Used for migrating to tagged passwords.) | 1210 // with the local profile id yet. (Used for migrating to tagged passwords.) |
1219 const char kPasswordsUseLocalProfileId[] = | 1211 const char kPasswordsUseLocalProfileId[] = |
1220 "profile.passwords_use_local_profile_id"; | 1212 "profile.passwords_use_local_profile_id"; |
1221 #endif | 1213 #endif |
1222 | 1214 |
(...skipping 1227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2450 // ping and the time of the last ping. | 2442 // ping and the time of the last ping. |
2451 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; | 2443 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; |
2452 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2444 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
2453 | 2445 |
2454 // A string pref for storing the salt used to compute the pepper device ID. | 2446 // A string pref for storing the salt used to compute the pepper device ID. |
2455 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2447 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
2456 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2448 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
2457 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2449 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
2458 | 2450 |
2459 } // namespace prefs | 2451 } // namespace prefs |
OLD | NEW |