#include "chrome/browser/bookmarks/bookmark_expanded_state_tracker_factory.h"
#include <memory>
#include "chrome/browser/bookmarks/bookmark_expanded_state_tracker.h"
#include "chrome/browser/profiles/profile.h"
#include "components/bookmarks/common/bookmark_pref_names.h"
#include "components/pref_registry/pref_registry_syncable.h"
BookmarkExpandedStateTracker*
BookmarkExpandedStateTrackerFactory::GetForProfile(Profile* profile) { … }
BookmarkExpandedStateTrackerFactory*
BookmarkExpandedStateTrackerFactory::GetInstance() { … }
BookmarkExpandedStateTrackerFactory::BookmarkExpandedStateTrackerFactory()
: … { … }
BookmarkExpandedStateTrackerFactory::~BookmarkExpandedStateTrackerFactory() =
default;
void BookmarkExpandedStateTrackerFactory::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) { … }
std::unique_ptr<KeyedService>
BookmarkExpandedStateTrackerFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const { … }