forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
browser_user_education_service.h
28 lines (22 loc) · 1.07 KB
/
browser_user_education_service.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2021 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_UI_VIEWS_USER_EDUCATION_BROWSER_USER_EDUCATION_SERVICE_H_
#define CHROME_BROWSER_UI_VIEWS_USER_EDUCATION_BROWSER_USER_EDUCATION_SERVICE_H_
#include "chrome/browser/ui/user_education/user_education_service.h"
namespace user_education {
class FeaturePromoRegistry;
class HelpBubbleFactoryRegistry;
class TutorialRegistry;
class HelpBubbleDelegate;
} // namespace user_education
extern const char kTabGroupTutorialId[];
extern const char kTabGroupWithExistingGroupTutorialId[];
extern user_education::HelpBubbleDelegate* GetHelpBubbleDelegate();
extern void RegisterChromeHelpBubbleFactories(
user_education::HelpBubbleFactoryRegistry& registry);
extern void MaybeRegisterChromeFeaturePromos(
user_education::FeaturePromoRegistry& registry);
extern void MaybeRegisterChromeTutorials(
user_education::TutorialRegistry& registry);
#endif // CHROME_BROWSER_UI_VIEWS_USER_EDUCATION_BROWSER_USER_EDUCATION_SERVICE_H_