chromium/chrome/browser/ui/user_education/low_usage_help_controller.h

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

#include "base/callback_list.h"
#include "base/memory/weak_ptr.h"
#include "base/supports_user_data.h"
#include "base/timer/timer.h"
#include "chrome/browser/profiles/profile.h"

// Class that provides additional help to users who don't use Chrome often.
// There is one controller per profile, and the promo will only show in the
// active browser.
class LowUsageHelpController : public base::SupportsUserData::Data {};

#endif  // CHROME_BROWSER_UI_USER_EDUCATION_LOW_USAGE_HELP_CONTROLLER_H_