| 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 kGCMProductCategoryForSubtypes[] = |
| 1230 "gcm.product_category_for_subtypes"; |
| 1231 |
| 1227 // Whether a user is allowed to use Easy Unlock. | 1232 // Whether a user is allowed to use Easy Unlock. |
| 1228 const char kEasyUnlockAllowed[] = "easy_unlock.allowed"; | 1233 const char kEasyUnlockAllowed[] = "easy_unlock.allowed"; |
| 1229 | 1234 |
| 1230 // Whether Easy Unlock is enabled. | 1235 // Whether Easy Unlock is enabled. |
| 1231 const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; | 1236 const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; |
| 1232 | 1237 |
| 1233 // Preference storing Easy Unlock pairing data. | 1238 // Preference storing Easy Unlock pairing data. |
| 1234 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; | 1239 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; |
| 1235 | 1240 |
| 1236 // Whether close proximity between the remote and the local device is required | 1241 // Whether close proximity between the remote and the local device is required |
| (...skipping 1007 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2244 #endif | 2249 #endif |
| 2245 | 2250 |
| 2246 // The base64-encoded representation of the public key to use to validate origin | 2251 // The base64-encoded representation of the public key to use to validate origin |
| 2247 // trial token signatures. | 2252 // trial token signatures. |
| 2248 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2253 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2249 | 2254 |
| 2250 // A list of origin trial features to disable by policy. | 2255 // A list of origin trial features to disable by policy. |
| 2251 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2256 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2252 | 2257 |
| 2253 } // namespace prefs | 2258 } // namespace prefs |
| OLD | NEW |