chromium/components/policy/core/common/policy_namespace.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_namespace.h"

#include <tuple>

namespace policy {

PolicyNamespace::PolicyNamespace() {}

PolicyNamespace::PolicyNamespace(PolicyDomain domain,
                                 const std::string& component_id)
    :{}

PolicyNamespace::PolicyNamespace(const PolicyNamespace& other)
    :{}

PolicyNamespace::~PolicyNamespace() {}

PolicyNamespace& PolicyNamespace::operator=(const PolicyNamespace& other) {}

bool PolicyNamespace::operator<(const PolicyNamespace& other) const {}

bool PolicyNamespace::operator==(const PolicyNamespace& other) const {}

bool PolicyNamespace::operator!=(const PolicyNamespace& other) const {}

}  // namespace policy