| 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 1265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1276 const char kPreferenceResetTime[] = "prefs.preference_reset_time"; | 1276 const char kPreferenceResetTime[] = "prefs.preference_reset_time"; |
| 1277 | 1277 |
| 1278 // String that indicates if the Profile Reset prompt has already been shown to | 1278 // String that indicates if the Profile Reset prompt has already been shown to |
| 1279 // the user. Used both in user preferences and local state, in the latter, it is | 1279 // the user. Used both in user preferences and local state, in the latter, it is |
| 1280 // actually a dictionary that maps profile keys to before-mentioned strings. | 1280 // actually a dictionary that maps profile keys to before-mentioned strings. |
| 1281 const char kProfileResetPromptMemento[] = "profile.reset_prompt_memento"; | 1281 const char kProfileResetPromptMemento[] = "profile.reset_prompt_memento"; |
| 1282 | 1282 |
| 1283 // The GCM channel's enabled state. | 1283 // The GCM channel's enabled state. |
| 1284 const char kGCMChannelEnabled[] = "gcm.channel_enabled"; | 1284 const char kGCMChannelEnabled[] = "gcm.channel_enabled"; |
| 1285 | 1285 |
| 1286 // How many Service Workers are registered with the Push API (could be zero). |
| 1287 const char kPushMessagingRegistrationCount[] = |
| 1288 "gcm.push_messaging_registration_count"; |
| 1289 |
| 1286 // Whether Easy Unlock is enabled. | 1290 // Whether Easy Unlock is enabled. |
| 1287 extern const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; | 1291 extern const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; |
| 1288 | 1292 |
| 1289 // Whether to show the Easy Unlock first run tutorial. | 1293 // Whether to show the Easy Unlock first run tutorial. |
| 1290 extern const char kEasyUnlockShowTutorial[] = "easy_unlock.show_tutorial"; | 1294 extern const char kEasyUnlockShowTutorial[] = "easy_unlock.show_tutorial"; |
| 1291 | 1295 |
| 1292 // Preference storing Easy Unlock pairing data. | 1296 // Preference storing Easy Unlock pairing data. |
| 1293 extern const char kEasyUnlockPairing[] = "easy_unlock.pairing"; | 1297 extern const char kEasyUnlockPairing[] = "easy_unlock.pairing"; |
| 1294 | 1298 |
| 1295 // A cache of zero suggest results using JSON serialized into a string. | 1299 // A cache of zero suggest results using JSON serialized into a string. |
| (...skipping 1067 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2363 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2367 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2364 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2368 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2365 // title or an empty string if the bookmark node was removed. | 2369 // title or an empty string if the bookmark node was removed. |
| 2366 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2370 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2367 #endif | 2371 #endif |
| 2368 | 2372 |
| 2369 // Whether DNS Quick Check is disabled in proxy resolution. | 2373 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2370 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2374 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2371 | 2375 |
| 2372 } // namespace prefs | 2376 } // namespace prefs |
| OLD | NEW |