#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[] = …;
class ExperimentManagerImpl : public ExperimentManager { … };
}
#endif