// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_BROWSER_TEST_MANAGEMENT_POLICY_H_ #define EXTENSIONS_BROWSER_TEST_MANAGEMENT_POLICY_H_ #include <string> #include "extensions/browser/management_policy.h" namespace extensions { // This class provides a simple way to create providers with specific // restrictions and a known error message, for use in testing. class TestManagementPolicyProvider : public ManagementPolicy::Provider { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_TEST_MANAGEMENT_POLICY_H_