blob: b159670a3ea7a6879e332871233af4f3f68ab4f9 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_OPTIMIZATION_GUIDE_COMMAND_LINE_TOP_HOST_PROVIDER_H_
#define COMPONENTS_OPTIMIZATION_GUIDE_COMMAND_LINE_TOP_HOST_PROVIDER_H_
#include <memory>
#include <string>
#include <vector>
#include "base/macros.h"
#include "components/optimization_guide/top_host_provider.h"
namespace optimization_guide {
// A TopHostProvider implementation that provides top hosts based on what is fed
// through the command line. This implementation is intended to be used just for
// developer and integration testing.
class CommandLineTopHostProvider : public TopHostProvider {
public:
// Creates a TopHostProvider if the flag for overriding top hosts has been
// enabled.
static std::unique_ptr<CommandLineTopHostProvider> CreateIfEnabled();
~CommandLineTopHostProvider() override;
// TopHostProvider implementation:
std::vector<std::string> GetTopHosts() override;
private:
explicit CommandLineTopHostProvider(
const std::vector<std::string>& top_hosts);
std::vector<std::string> top_hosts_;
DISALLOW_COPY_AND_ASSIGN(CommandLineTopHostProvider);
};
} // namespace optimization_guide
#endif // COMPONENTS_OPTIMIZATION_GUIDE_COMMAND_LINE_TOP_HOST_PROVIDER_H_