// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_USER_EDUCATION_COMMON_USER_EDUCATION_METADATA_H_ #define COMPONENTS_USER_EDUCATION_COMMON_USER_EDUCATION_METADATA_H_ #include <initializer_list> #include <string> #include "base/containers/flat_set.h" #include "base/feature_list.h" #include "base/memory/raw_ptr.h" namespace user_education { // Provides metadata about a user education experience (IPH, Tutorial, "New" // Badge, etc.). // // Metadata will be shown and used on the tester page // (chrome://internals/user-education), and also provides information as to when // the journey was added to Chrome and by whom. struct Metadata { … }; } // namespace user_education #endif // COMPONENTS_USER_EDUCATION_COMMON_USER_EDUCATION_METADATA_H_