chromium/chrome/browser/bookmarks/bookmark_expanded_state_tracker_factory.cc

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

#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"

// static
BookmarkExpandedStateTracker*
BookmarkExpandedStateTrackerFactory::GetForProfile(Profile* profile) {}

// static
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 {}