#include <memory>
#include "base/values.h"
#include "components/autofill/core/browser/autofill_policy_handler.h"
#include "components/autofill/core/common/autofill_prefs.h"
#include "components/policy/core/common/policy_map.h"
#include "components/policy/core/common/policy_types.h"
#include "components/policy/policy_constants.h"
#include "components/prefs/pref_value_map.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace autofill {
class AutofillPolicyHandlerTest : public testing::Test { … };
TEST_F(AutofillPolicyHandlerTest, Default) { … }
TEST_F(AutofillPolicyHandlerTest, Enabled) { … }
TEST_F(AutofillPolicyHandlerTest, Disabled) { … }
TEST_F(AutofillPolicyHandlerTest, DeprecatedPolicyIgnored_AddressEnabled) { … }
TEST_F(AutofillPolicyHandlerTest, DeprecatedPolicyIgnored_CreditCardEnabled) { … }
}