chromium/chrome/browser/tpcd/experiment/experiment_manager_impl.h

// Copyright 2023 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_TPCD_EXPERIMENT_EXPERIMENT_MANAGER_IMPL_H_
#define CHROME_BROWSER_TPCD_EXPERIMENT_EXPERIMENT_MANAGER_IMPL_H_

#include <optional>
#include <vector>

#include "base/functional/callback_forward.h"
#include "base/no_destructor.h"
#include "base/sequence_checker.h"
#include "base/thread_annotations.h"
#include "chrome/browser/tpcd/experiment/experiment_manager.h"

class Profile;

namespace tpcd::experiment {

inline constexpr char kSyntheticTrialName[] =;
inline constexpr char kSyntheticTrialInvalidGroupName[] =;

// Can only be used on the main thread.
class ExperimentManagerImpl : public ExperimentManager {};

}  // namespace tpcd::experiment

#endif  // CHROME_BROWSER_TPCD_EXPERIMENT_EXPERIMENT_MANAGER_IMPL_H_