1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33

content / public / common / web_identity.h [blame]

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

#ifndef CONTENT_PUBLIC_COMMON_WEB_IDENTITY_H_
#define CONTENT_PUBLIC_COMMON_WEB_IDENTITY_H_

#include <memory>

#include "base/functional/callback.h"
#include "content/common/content_export.h"
#include "third_party/blink/public/common/loader/url_loader_throttle.h"

namespace url {
class Origin;
}  // namespace url

namespace blink::mojom {
enum class IdpSigninStatus;
}  // namespace blink::mojom

namespace content {

typedef base::RepeatingCallback<void(const url::Origin&,
                                     blink::mojom::IdpSigninStatus)>
    SetIdpStatusCallback;

CONTENT_EXPORT std::unique_ptr<blink::URLLoaderThrottle>
MaybeCreateIdentityUrlLoaderThrottle(SetIdpStatusCallback cb);

}  // namespace content

#endif  // CONTENT_PUBLIC_COMMON_WEB_IDENTITY_H_