chromium/components/policy/core/common/policy_bundle.cc

// Copyright 2013 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/policy/core/common/policy_bundle.h"

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

namespace policy {

namespace {
// An empty PolicyMap that is returned by const Get() for namespaces that
// do not exist in |policy_bundle_|.
const PolicyMap& GetEmptyPolicyMap() {}
}  // namespace

PolicyBundle::PolicyBundle() = default;
PolicyBundle::PolicyBundle(PolicyBundle&&) = default;
PolicyBundle& PolicyBundle::operator=(PolicyBundle&&) = default;

PolicyBundle::~PolicyBundle() = default;

PolicyMap& PolicyBundle::Get(const PolicyNamespace& ns) {}

const PolicyMap& PolicyBundle::Get(const PolicyNamespace& ns) const {}

PolicyBundle PolicyBundle::Clone() const {}

void PolicyBundle::MergeFrom(const PolicyBundle& other) {}

bool PolicyBundle::Equals(const PolicyBundle& other) const {}

void PolicyBundle::Clear() {}

}  // namespace policy