| 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 2376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2387 | 2387 |
| 2388 // An integer per-profile pref that signals if the watchdog extension is | 2388 // An integer per-profile pref that signals if the watchdog extension is |
| 2389 // installed and active. We need to know if the watchdog extension active for | 2389 // installed and active. We need to know if the watchdog extension active for |
| 2390 // ActivityLog initialization before the extension system is initialized. | 2390 // ActivityLog initialization before the extension system is initialized. |
| 2391 const char kWatchdogExtensionActive[] = | 2391 const char kWatchdogExtensionActive[] = |
| 2392 "profile.extensions.activity_log.num_consumers_active"; | 2392 "profile.extensions.activity_log.num_consumers_active"; |
| 2393 // The old version was a bool. | 2393 // The old version was a bool. |
| 2394 const char kWatchdogExtensionActiveOld[] = | 2394 const char kWatchdogExtensionActiveOld[] = |
| 2395 "profile.extensions.activity_log.watchdog_extension_active"; | 2395 "profile.extensions.activity_log.watchdog_extension_active"; |
| 2396 | 2396 |
| 2397 // A dictionary pref which maps profile names to dictionary values which hold | |
| 2398 // hashes of profile prefs that we track to detect changes that happen outside | |
| 2399 // of Chrome. | |
| 2400 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; | |
| 2401 | |
| 2402 #if defined(OS_ANDROID) | 2397 #if defined(OS_ANDROID) |
| 2403 // A list of partner bookmark rename/remove mappings. | 2398 // A list of partner bookmark rename/remove mappings. |
| 2404 // Each list item is a dictionary containing a "url", a "provider_title" and | 2399 // Each list item is a dictionary containing a "url", a "provider_title" and |
| 2405 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2400 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2406 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2401 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2407 // title or an empty string if the bookmark node was removed. | 2402 // title or an empty string if the bookmark node was removed. |
| 2408 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2403 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2409 #endif | 2404 #endif |
| 2410 | 2405 |
| 2411 // Whether DNS Quick Check is disabled in proxy resolution. | 2406 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2412 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2407 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2413 | 2408 |
| 2414 } // namespace prefs | 2409 } // namespace prefs |
| OLD | NEW |