| 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 ba7269a7b3a50298dbb53174278e365f9ab80135..af90c6d97cf43c1f1992fb093765da7168e6bd77 100644
|
| --- a/chrome/browser/policy/configuration_policy_handler_list_factory.cc
|
| +++ b/chrome/browser/policy/configuration_policy_handler_list_factory.cc
|
| @@ -41,6 +41,7 @@
|
| #endif
|
|
|
| #if defined(OS_CHROMEOS)
|
| +#include "chrome/browser/chromeos/net/captive_portal_ignore_proxy_policy_values.h"
|
| #include "chrome/browser/chromeos/policy/configuration_policy_handler_chromeos.h"
|
| #include "chromeos/dbus/power_policy_controller.h"
|
| #include "components/user_manager/user.h"
|
| @@ -819,6 +820,13 @@ scoped_ptr<ConfigurationPolicyHandlerList> BuildHandlerList(
|
| SCHEMA_STRICT,
|
| SimpleSchemaValidatingPolicyHandler::RECOMMENDED_ALLOWED,
|
| SimpleSchemaValidatingPolicyHandler::MANDATORY_PROHIBITED)));
|
| + handlers->AddHandler(
|
| + make_scoped_ptr<ConfigurationPolicyHandler>(new IntRangePolicyHandler(
|
| + key::kCaptivePortalAuthenticationIgnoresProxy,
|
| + prefs::kCaptivePortalAuthenticationIgnoresProxy,
|
| + chromeos::CAPTIVE_PORTAL_AUTH_IGNORE_PROXY_FALSE,
|
| + chromeos::CAPTIVE_PORTAL_AUTH_IGNORE_PROXY_USER_CONFIGURABLE,
|
| + false)));
|
| #endif // defined(OS_CHROMEOS)
|
|
|
| return handlers.Pass();
|
|
|