chromium/components/optimization_guide/core/optimization_guide_test_util.cc

// 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.

#include "components/optimization_guide/core/optimization_guide_test_util.h"

#include "base/base64.h"
#include "build/build_config.h"

namespace optimization_guide {

#if BUILDFLAG(IS_WIN)
const char kTestAbsoluteFilePath[] = "C:\\absolute\\file\\path";
const char kTestRelativeFilePath[] = "relative\\file\\path";
#else
const char kTestAbsoluteFilePath[] =;
const char kTestRelativeFilePath[] =;
#endif

std::string CreateHintsConfig(
    const GURL& hints_url,
    optimization_guide::proto::OptimizationType optimization_type,
    optimization_guide::proto::Any* metadata) {}

}  // namespace optimization_guide