// 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 COMPONENTS_POLICY_CORE_COMMON_POLICY_LOADER_COMMAND_LINE_H_ #define COMPONENTS_POLICY_CORE_COMMON_POLICY_LOADER_COMMAND_LINE_H_ #include "base/command_line.h" #include "base/memory/raw_ref.h" #include "components/policy/policy_export.h" namespace policy { class PolicyBundle; // Loads policy value from command line switch for development and testing // purposes. It can be only used with strict limitation. For example, on // Android, the device must be rooted. class POLICY_EXPORT PolicyLoaderCommandLine { … }; } // namespace policy #endif // COMPONENTS_POLICY_CORE_COMMON_POLICY_LOADER_COMMAND_LINE_H_