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 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1084 | 1084 |
1085 // Boolean that specifies whether to import the saved passwords from the default | 1085 // Boolean that specifies whether to import the saved passwords from the default |
1086 // browser on first run. | 1086 // browser on first run. |
1087 const char kImportSavedPasswords[] = "import_saved_passwords"; | 1087 const char kImportSavedPasswords[] = "import_saved_passwords"; |
1088 | 1088 |
1089 // The URL of the enterprise web store, which is a site trusted by the | 1089 // The URL of the enterprise web store, which is a site trusted by the |
1090 // enterprise admin. Users can install apps & extensions from this site | 1090 // enterprise admin. Users can install apps & extensions from this site |
1091 // without scary warnings. | 1091 // without scary warnings. |
1092 const char kEnterpriseWebStoreURL[] = "webstore.enterprise_store_url"; | 1092 const char kEnterpriseWebStoreURL[] = "webstore.enterprise_store_url"; |
1093 | 1093 |
| 1094 // Boolean which indicates if the chrome-to-mobile receiving has been enabled. |
| 1095 const char kChromeToMobileReceiveEnabled[] = "chrome-to-device-receive.enabled"; |
| 1096 // Boolean which indicates if the chrome-to-mobile receive service was silently |
| 1097 // disabled due to failures. |
| 1098 const char kChromeToMobileReceiveStartingSuppressed[] = |
| 1099 "chrome-to-device-receive.starting_suppressed"; |
| 1100 // String for the printer id of the device registered as a printer to receive |
| 1101 // chrome-to-mobile jobs. |
| 1102 const char kChromeToMobileReceivePrinterId[] = |
| 1103 "chrome-to-device-receive.printer_id"; |
| 1104 |
1094 // The name of the enterprise web store, to be shown to the user. | 1105 // The name of the enterprise web store, to be shown to the user. |
1095 const char kEnterpriseWebStoreName[] = "webstore.enterprise_store_name"; | 1106 const char kEnterpriseWebStoreName[] = "webstore.enterprise_store_name"; |
1096 | 1107 |
1097 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 1108 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
1098 // The local profile id for this profile. | 1109 // The local profile id for this profile. |
1099 const char kLocalProfileId[] = "profile.local_profile_id"; | 1110 const char kLocalProfileId[] = "profile.local_profile_id"; |
1100 | 1111 |
1101 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged | 1112 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged |
1102 // with the local profile id yet. (Used for migrating to tagged passwords.) | 1113 // with the local profile id yet. (Used for migrating to tagged passwords.) |
1103 const char kPasswordsUseLocalProfileId[] = | 1114 const char kPasswordsUseLocalProfileId[] = |
(...skipping 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2127 // Tracks the time of the last shown warning. Used to reset | 2138 // Tracks the time of the last shown warning. Used to reset |
2128 // |network_profile.warnings_left| after a silence period. | 2139 // |network_profile.warnings_left| after a silence period. |
2129 const char kNetworkProfileLastWarningTime[] = | 2140 const char kNetworkProfileLastWarningTime[] = |
2130 "network_profile.last_warning_time"; | 2141 "network_profile.last_warning_time"; |
2131 | 2142 |
2132 // 64-bit serialization of the time last policy usage statistics were collected | 2143 // 64-bit serialization of the time last policy usage statistics were collected |
2133 // by UMA_HISTOGRAM_ENUMERATION. | 2144 // by UMA_HISTOGRAM_ENUMERATION. |
2134 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2145 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2135 | 2146 |
2136 } // namespace prefs | 2147 } // namespace prefs |
OLD | NEW |