chromium/components/keyed_service/core/simple_key_map.cc

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

#include "components/keyed_service/core/simple_key_map.h"

#include "base/check.h"
#include "base/no_destructor.h"

SimpleKeyMap::SimpleKeyMap() = default;

SimpleKeyMap::~SimpleKeyMap() = default;

// static
SimpleKeyMap* SimpleKeyMap::GetInstance() {}

void SimpleKeyMap::Associate(content::BrowserContext* browser_context,
                             SimpleFactoryKey* key) {}

SimpleFactoryKey* SimpleKeyMap::GetForBrowserContext(
    content::BrowserContext* browser_context) {}

void SimpleKeyMap::Dissociate(content::BrowserContext* browser_context) {}