| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_WITH_MANAGEMENT_POLICY_APITEST_H_ | |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_WITH_MANAGEMENT_POLICY_APITEST_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 #include <vector> | |
| 10 | |
| 11 #include "chrome/browser/extensions/extension_apitest.h" | |
| 12 #include "components/policy/core/common/mock_configuration_policy_provider.h" | |
| 13 | |
| 14 // The ExtensionSettings policy affects host permissions which impacts several | |
| 15 // API integration tests. This class enables easy declaration of | |
| 16 // ExtensionSettings policies and functions commonly used during these tests. | |
| 17 class ExtensionApiTestWithManagementPolicy : public ExtensionApiTest { | |
| 18 public: | |
| 19 ExtensionApiTestWithManagementPolicy(); | |
| 20 ~ExtensionApiTestWithManagementPolicy() override; | |
| 21 void SetUpInProcessBrowserTestFixture() override; | |
| 22 | |
| 23 protected: | |
| 24 policy::MockConfigurationPolicyProvider policy_provider_; | |
| 25 | |
| 26 DISALLOW_COPY_AND_ASSIGN(ExtensionApiTestWithManagementPolicy); | |
| 27 }; | |
| 28 | |
| 29 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_WITH_MANAGEMENT_POLICY_APITEST_H_ | |
| OLD | NEW |