chromium/third_party/blink/common/client_hints/enabled_client_hints.cc

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

#include "third_party/blink/public/common/client_hints/enabled_client_hints.h"

#include "base/feature_list.h"
#include "services/network/public/cpp/client_hints.h"
#include "third_party/blink/public/common/features.h"

namespace blink {

namespace {

WebClientHintsType;

bool IsDisabledByFeature(const WebClientHintsType type) {}

}  // namespace

bool EnabledClientHints::IsEnabled(const WebClientHintsType type) const {}

void EnabledClientHints::SetIsEnabled(const WebClientHintsType type,
                                      const bool should_send) {}

std::vector<WebClientHintsType> EnabledClientHints::GetEnabledHints() const {}

}  // namespace blink