chromium/chrome/browser/profiles/profile_impl.h

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// This class gathers state related to a single user profile.

#ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
#define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_

#include <map>
#include <memory>
#include <string>
#include <vector>

#include "base/files/file_path.h"
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/zoom/chrome_zoom_level_prefs.h"
#include "chrome/common/buildflags.h"
#include "components/keyed_service/core/simple_factory_key.h"
#include "components/prefs/pref_change_registrar.h"
#include "content/public/browser/host_zoom_map.h"
#include "extensions/buildflags/buildflags.h"

class PrefService;

#if BUILDFLAG(IS_CHROMEOS_ASH)
namespace ash {
class KioskBaseTest;
class LocaleChangeGuard;
class Preferences;
}  // namespace ash
#endif

namespace base {
class SequencedTaskRunner;
}

#if BUILDFLAG(IS_CHROMEOS_LACROS)
namespace extensions {
class VolumeListProviderLacros;
}  // namespace extensions
#endif  // BUILDFLAG(IS_CHROMEOS_LACROS)

namespace policy {
class AsyncPolicyProvider;
class ConfigurationPolicyProvider;
class ProfilePolicyConnector;
class ProfileCloudPolicyManager;
}  // namespace policy

namespace sync_preferences {
class PrefServiceSyncable;
}

namespace user_prefs {
class PrefRegistrySyncable;
}

// The default profile implementation.
class ProfileImpl : public Profile {};

#endif  // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_