// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_POLICY_CHROME_POLICY_CONVERSIONS_CLIENT_H_ #define CHROME_BROWSER_POLICY_CHROME_POLICY_CONVERSIONS_CLIENT_H_ #include "base/memory/raw_ptr.h" #include "build/chromeos_buildflags.h" #include "components/policy/core/browser/policy_conversions_client.h" namespace content { class BrowserContext; } class Profile; namespace policy { // ChromePolicyConversionsClient provides an implementation of the // PolicyConversionsClient interface that is based on Profile and is suitable // for use in //chrome. class ChromePolicyConversionsClient : public PolicyConversionsClient { … }; } // namespace policy #endif // CHROME_BROWSER_POLICY_CHROME_POLICY_CONVERSIONS_CLIENT_H_