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 1215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1226 "gpu_driver_info_build_finder_print"; | 1226 "gpu_driver_info_build_finder_print"; |
1227 #endif | 1227 #endif |
1228 | 1228 |
1229 // Maps from app ids to origin + Service Worker registration ID. | 1229 // Maps from app ids to origin + Service Worker registration ID. |
1230 const char kPushMessagingAppIdentifierMap[] = | 1230 const char kPushMessagingAppIdentifierMap[] = |
1231 "gcm.push_messaging_application_id_map"; | 1231 "gcm.push_messaging_application_id_map"; |
1232 | 1232 |
1233 // Maps from origin to background budget information. | 1233 // Maps from origin to background budget information. |
1234 const char kBackgroundBudgetMap[] = "push_messaging.background_budget_map"; | 1234 const char kBackgroundBudgetMap[] = "push_messaging.background_budget_map"; |
1235 | 1235 |
| 1236 // A string like "com.chrome.macosx" that should be used as the GCM category |
| 1237 // when an app_id is sent as a subtype instead of as a category. |
| 1238 const char kGCMProductCategoryForSubtypes[] = |
| 1239 "gcm.product_category_for_subtypes"; |
| 1240 |
1236 // Whether a user is allowed to use Easy Unlock. | 1241 // Whether a user is allowed to use Easy Unlock. |
1237 const char kEasyUnlockAllowed[] = "easy_unlock.allowed"; | 1242 const char kEasyUnlockAllowed[] = "easy_unlock.allowed"; |
1238 | 1243 |
1239 // Whether Easy Unlock is enabled. | 1244 // Whether Easy Unlock is enabled. |
1240 const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; | 1245 const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; |
1241 | 1246 |
1242 // Preference storing Easy Unlock pairing data. | 1247 // Preference storing Easy Unlock pairing data. |
1243 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; | 1248 const char kEasyUnlockPairing[] = "easy_unlock.pairing"; |
1244 | 1249 |
1245 // Whether close proximity between the remote and the local device is required | 1250 // Whether close proximity between the remote and the local device is required |
(...skipping 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2260 #endif // defined(ENABLE_MEDIA_ROUTER) | 2265 #endif // defined(ENABLE_MEDIA_ROUTER) |
2261 | 2266 |
2262 // The base64-encoded representation of the public key to use to validate origin | 2267 // The base64-encoded representation of the public key to use to validate origin |
2263 // trial token signatures. | 2268 // trial token signatures. |
2264 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2269 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2265 | 2270 |
2266 // A list of origin trial features to disable by policy. | 2271 // A list of origin trial features to disable by policy. |
2267 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2272 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2268 | 2273 |
2269 } // namespace prefs | 2274 } // namespace prefs |
OLD | NEW |