| 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 2470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2481 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2481 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
| 2482 | 2482 |
| 2483 // How often the bubble has been shown. | 2483 // How often the bubble has been shown. |
| 2484 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; | 2484 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; |
| 2485 | 2485 |
| 2486 // A string pref for storing the salt used to compute the pepper device ID. | 2486 // A string pref for storing the salt used to compute the pepper device ID. |
| 2487 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2487 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
| 2488 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2488 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
| 2489 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2489 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
| 2490 | 2490 |
| 2491 // A boolean per-profile pref that signals if the ActivityLog extension is |
| 2492 // installed and active. We need to know if the ActivityLog extension active for |
| 2493 // ActivityLog initialization before the extension system is initialized. |
| 2494 const char kActivityLogExtensionActive[] = |
| 2495 "profile.extensions.activity_log.activity_log_extension_active"; |
| 2496 |
| 2491 } // namespace prefs | 2497 } // namespace prefs |
| OLD | NEW |