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 2556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2567 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2567 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
2568 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2568 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
2569 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2569 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
2570 | 2570 |
2571 // A boolean per-profile pref that signals if the watchdog extension is | 2571 // A boolean per-profile pref that signals if the watchdog extension is |
2572 // installed and active. We need to know if the watchdog extension active for | 2572 // installed and active. We need to know if the watchdog extension active for |
2573 // ActivityLog initialization before the extension system is initialized. | 2573 // ActivityLog initialization before the extension system is initialized. |
2574 const char kWatchdogExtensionActive[] = | 2574 const char kWatchdogExtensionActive[] = |
2575 "profile.extensions.activity_log.watchdog_extension_active"; | 2575 "profile.extensions.activity_log.watchdog_extension_active"; |
2576 | 2576 |
| 2577 // A dictionary pref which maps profile names to dictionary values which hold |
| 2578 // hashes of profile prefs that we track to detect changes that happen outside |
| 2579 // of Chrome. |
| 2580 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; |
| 2581 |
2577 } // namespace prefs | 2582 } // namespace prefs |
OLD | NEW |