chromium/third_party/blink/renderer/modules/private_attribution/private_attribution.cc

// Copyright 2023 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/renderer/modules/private_attribution/private_attribution.h"

#include "third_party/blink/renderer/bindings/core/v8/script_promise_resolver.h"
#include "third_party/blink/renderer/bindings/core/v8/script_value.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"

namespace blink {

PrivateAttribution::PrivateAttribution() = default;

// static
ScriptPromise<PrivateAttributionEncryptedMatchKey>
PrivateAttribution::getEncryptedMatchKey(ScriptState*,
                                         String report_collector,
                                         PrivateAttributionOptions* options,
                                         ExceptionState& exception_state) {}

// static
ScriptPromise<IDLSequence<PrivateAttributionNetwork>>
PrivateAttribution::getHelperNetworks(ScriptState*,
                                      ExceptionState& exception_state) {}

void PrivateAttribution::Trace(Visitor* visitor) const {}

}  // namespace blink