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/macros.h" | 7 #include "base/macros.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
10 | 10 |
(...skipping 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1217 const char kNotificationsVibrateEnabled[] = "notifications.vibrate_enabled"; | 1217 const char kNotificationsVibrateEnabled[] = "notifications.vibrate_enabled"; |
1218 #endif | 1218 #endif |
1219 | 1219 |
1220 // Maps from app ids to origin + Service Worker registration ID. | 1220 // Maps from app ids to origin + Service Worker registration ID. |
1221 const char kPushMessagingAppIdentifierMap[] = | 1221 const char kPushMessagingAppIdentifierMap[] = |
1222 "gcm.push_messaging_application_id_map"; | 1222 "gcm.push_messaging_application_id_map"; |
1223 | 1223 |
1224 // Maps from origin to background budget information. | 1224 // Maps from origin to background budget information. |
1225 const char kBackgroundBudgetMap[] = "push_messaging.background_budget_map"; | 1225 const char kBackgroundBudgetMap[] = "push_messaging.background_budget_map"; |
1226 | 1226 |
| 1227 // A string like "com.chrome.stable.macosx" that should be used as the GCM |
| 1228 // category when an app_id is sent as a subtype instead of as a category. |
| 1229 const char kGCMCategoryForSubtypes[] = "gcm.category_for_subtypes"; |
| 1230 |
1227 // Whether a user is allowed to use Easy Unlock. | 1231 // Whether a user is allowed to use Easy Unlock. |
1228 const char kEasyUnlockAllowed[] = "easy_unlock.allowed"; | 1232 const char kEasyUnlockAllowed[] = "easy_unlock.allowed"; |
1229 | 1233 |
1230 // Whether Easy Unlock is enabled. | 1234 // Whether Easy Unlock is enabled. |
1231 const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; | 1235 const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; |
1232 | 1236 |
1233 // Preference storing Easy Unlock pairing data. | 1237 // Preference storing Easy Unlock pairing data. |
1234 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; | 1238 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; |
1235 | 1239 |
1236 // Whether close proximity between the remote and the local device is required | 1240 // Whether close proximity between the remote and the local device is required |
(...skipping 1010 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2247 #endif | 2251 #endif |
2248 | 2252 |
2249 // The base64-encoded representation of the public key to use to validate origin | 2253 // The base64-encoded representation of the public key to use to validate origin |
2250 // trial token signatures. | 2254 // trial token signatures. |
2251 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2255 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2252 | 2256 |
2253 // A list of origin trial features to disable by policy. | 2257 // A list of origin trial features to disable by policy. |
2254 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2258 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2255 | 2259 |
2256 } // namespace prefs | 2260 } // namespace prefs |
OLD | NEW |