component_loader_policy_forward.h 636 B

12345678910111213141516171819
  1. // Copyright 2021 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. #ifndef COMPONENTS_COMPONENT_UPDATER_ANDROID_COMPONENT_LOADER_POLICY_FORWARD_H_
  5. #define COMPONENTS_COMPONENT_UPDATER_ANDROID_COMPONENT_LOADER_POLICY_FORWARD_H_
  6. #include <memory>
  7. #include <vector>
  8. namespace component_updater {
  9. class ComponentLoaderPolicy;
  10. using ComponentLoaderPolicyVector =
  11. std::vector<std::unique_ptr<ComponentLoaderPolicy>>;
  12. } // namespace component_updater
  13. #endif // COMPONENTS_COMPONENT_UPDATER_ANDROID_COMPONENT_LOADER_POLICY_FORWARD_H_