chromium/components/feature_engagement/internal/condition_validator.cc

// Copyright 2017 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/feature_engagement/internal/condition_validator.h"

#include <ostream>

namespace feature_engagement {

ConditionValidator::Result::Result(bool initial_values)
    :{}

ConditionValidator::Result::Result(const Result& other) = default;

ConditionValidator::Result& ConditionValidator::Result::operator=(
    const Result& other) = default;

bool ConditionValidator::Result::NoErrors() const {}

std::ostream& operator<<(std::ostream& os,
                         const ConditionValidator::Result& result) {}

}  // namespace feature_engagement