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

ash / webui / help_app_ui / help_app_prefs.h [blame]

// 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 ASH_WEBUI_HELP_APP_UI_HELP_APP_PREFS_H_
#define ASH_WEBUI_HELP_APP_UI_HELP_APP_PREFS_H_

class PrefRegistrySimple;

namespace ash::help_app::prefs {

// Boolean pref for whether or not the user has completed the new device
// checklist in the help app.
inline constexpr char kHelpAppHasCompletedNewDeviceChecklist[] =
    "help_app.has_completed_new_device_checklist";

// Boolean pref for whether or not the user has ever visited the how_to page in
// the help app.
inline constexpr char kHelpAppHasVisitedHowToPage[] =
    "help_app.has_visited_how_to_page";

void RegisterProfilePrefs(PrefRegistrySimple* registry);

}  // namespace ash::help_app::prefs

#endif  // ASH_WEBUI_HELP_APP_UI_HELP_APP_PREFS_H_