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

Side by Side Diff: chrome/common/pref_names.h

Issue 11783008: Add a lock to the managed user settings page and require authentication for unlocking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Several fixes Created 7 years, 11 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 // Constants for the names of various preferences, for easier changing. 5 // Constants for the names of various preferences, for easier changing.
6 6
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ 7 #ifndef CHROME_COMMON_PREF_NAMES_H_
8 #define CHROME_COMMON_PREF_NAMES_H_ 8 #define CHROME_COMMON_PREF_NAMES_H_
9 9
10 #include <stddef.h> 10 #include <stddef.h>
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 extern const char kManagedJavaScriptAllowedForUrls[]; 688 extern const char kManagedJavaScriptAllowedForUrls[];
689 extern const char kManagedJavaScriptBlockedForUrls[]; 689 extern const char kManagedJavaScriptBlockedForUrls[];
690 extern const char kManagedPluginsAllowedForUrls[]; 690 extern const char kManagedPluginsAllowedForUrls[];
691 extern const char kManagedPluginsBlockedForUrls[]; 691 extern const char kManagedPluginsBlockedForUrls[];
692 extern const char kManagedPopupsAllowedForUrls[]; 692 extern const char kManagedPopupsAllowedForUrls[];
693 extern const char kManagedPopupsBlockedForUrls[]; 693 extern const char kManagedPopupsBlockedForUrls[];
694 extern const char kManagedNotificationsAllowedForUrls[]; 694 extern const char kManagedNotificationsAllowedForUrls[];
695 extern const char kManagedNotificationsBlockedForUrls[]; 695 extern const char kManagedNotificationsBlockedForUrls[];
696 extern const char kManagedAutoSelectCertificateForUrls[]; 696 extern const char kManagedAutoSelectCertificateForUrls[];
697 697
698 // Used for the managed mode to calculate and store a hash of the password
Bernhard Bauer 2013/01/08 17:43:14 Descriptions are in the header file only (and if y
Adrian Kuegel 2013/01/09 12:10:05 In this case, they seem to be in both cc and h fil
699 // of the custodian of a managed user.
700 extern const char kManagedModeLocalPassphrase[];
701 extern const char kManagedModeLocalSalt[];
702
698 extern const char kAudioCaptureAllowed[]; 703 extern const char kAudioCaptureAllowed[];
699 extern const char kVideoCaptureAllowed[]; 704 extern const char kVideoCaptureAllowed[];
700 705
701 #if defined(OS_CHROMEOS) 706 #if defined(OS_CHROMEOS)
702 extern const char kDeviceSettingsCache[]; 707 extern const char kDeviceSettingsCache[];
703 extern const char kHardwareKeyboardLayout[]; 708 extern const char kHardwareKeyboardLayout[];
704 extern const char kCarrierDealPromoShown[]; 709 extern const char kCarrierDealPromoShown[];
705 extern const char kShouldAutoEnroll[]; 710 extern const char kShouldAutoEnroll[];
706 extern const char kAutoEnrollmentPowerLimit[]; 711 extern const char kAutoEnrollmentPowerLimit[];
707 extern const char kDeviceActivityTimes[]; 712 extern const char kDeviceActivityTimes[];
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 extern const char kLastPolicyStatisticsUpdate[]; 819 extern const char kLastPolicyStatisticsUpdate[];
815 820
816 #if defined(OS_CHROMEOS) 821 #if defined(OS_CHROMEOS)
817 extern const char kRLZBrand[]; 822 extern const char kRLZBrand[];
818 extern const char kRLZDisabled[]; 823 extern const char kRLZDisabled[];
819 #endif 824 #endif
820 825
821 } // namespace prefs 826 } // namespace prefs
822 827
823 #endif // CHROME_COMMON_PREF_NAMES_H_ 828 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698