Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: trunk/src/chrome/common/pref_names.cc

Issue 23788010: Revert 221966 "Revert 221944 "Add UMA to report Preferences File..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 2579 matching lines...) Expand 10 before | Expand all | Expand 10 after
2590 // A boolean pref that enables the (private) pepper GetDeviceID() call and 2590 // A boolean pref that enables the (private) pepper GetDeviceID() call and
2591 // enables the use of remote attestation for content protection. 2591 // enables the use of remote attestation for content protection.
2592 const char kEnableDRM[] = "settings.privacy.drm_enabled"; 2592 const char kEnableDRM[] = "settings.privacy.drm_enabled";
2593 2593
2594 // A boolean per-profile pref that signals if the watchdog extension is 2594 // A boolean per-profile pref that signals if the watchdog extension is
2595 // installed and active. We need to know if the watchdog extension active for 2595 // installed and active. We need to know if the watchdog extension active for
2596 // ActivityLog initialization before the extension system is initialized. 2596 // ActivityLog initialization before the extension system is initialized.
2597 const char kWatchdogExtensionActive[] = 2597 const char kWatchdogExtensionActive[] =
2598 "profile.extensions.activity_log.watchdog_extension_active"; 2598 "profile.extensions.activity_log.watchdog_extension_active";
2599 2599
2600 // A dictionary pref which maps profile names to dictionary values which hold
2601 // hashes of profile prefs that we track to detect changes that happen outside
2602 // of Chrome.
2603 const char kProfilePreferenceHashes[] = "profile.preference_hashes";
2604
2600 } // namespace prefs 2605 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698