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

Unified Diff: chrome/browser/policy/configuration_policy_handler_list_factory.cc

Issue 143463009: Add policy that forces SAML users to log in online periodically (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/policy/configuration_policy_handler_list_factory.cc
diff --git a/chrome/browser/policy/configuration_policy_handler_list_factory.cc b/chrome/browser/policy/configuration_policy_handler_list_factory.cc
index 37a75dfbf448b503213378b05d5aecf2c73c4ddb..992ead3a71495d6adb864be2e28cd550ecf5a991 100644
--- a/chrome/browser/policy/configuration_policy_handler_list_factory.cc
+++ b/chrome/browser/policy/configuration_policy_handler_list_factory.cc
@@ -609,6 +609,12 @@ scoped_ptr<ConfigurationPolicyHandlerList> BuildHandlerList() {
0,
INT_MAX,
true)));
+ handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>(
+ new IntRangePolicyHandler(key::kSAMLOfflineSigninTimeLimit,
+ prefs::kSAMLOfflineSigninTimeLimit,
+ -1,
+ INT_MAX,
+ true)));
handlers->AddHandler(
make_scoped_ptr<ConfigurationPolicyHandler>(new IntRangePolicyHandler(
key::kIdleActionAC,

Powered by Google App Engine
This is Rietveld 408576698