1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21

content / browser / webid / test / mock_identity_registry.cc [blame]

// 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 "content/browser/webid/test/mock_identity_registry.h"

#include "content/browser/webid/identity_registry.h"
#include "content/browser/webid/test/mock_modal_dialog_view_delegate.h"
#include "url/gurl.h"

namespace content {

MockIdentityRegistry::MockIdentityRegistry(
    content::WebContents* web_contents,
    base::WeakPtr<FederatedIdentityModalDialogViewDelegate> delegate,
    const GURL& idp_config_url)
    : IdentityRegistry(web_contents, delegate, idp_config_url) {}

MockIdentityRegistry::~MockIdentityRegistry() = default;

}  // namespace content