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

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: Nits addressed. 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 409bbcd727e3254e85dc07e76d84b650a18aa7dd..c035bfd25745103ce04aaa5663f7d333feed6817 100644
--- a/chrome/browser/policy/configuration_policy_handler_list_factory.cc
+++ b/chrome/browser/policy/configuration_policy_handler_list_factory.cc
@@ -613,6 +613,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