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
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43

content / public / browser / federated_identity_modal_dialog_view_delegate.h [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.

#ifndef CONTENT_PUBLIC_BROWSER_FEDERATED_IDENTITY_MODAL_DIALOG_VIEW_DELEGATE_H_
#define CONTENT_PUBLIC_BROWSER_FEDERATED_IDENTITY_MODAL_DIALOG_VIEW_DELEGATE_H_

#include <optional>
#include <string>

#include "content/common/content_export.h"
#include "url/gurl.h"

namespace content {

// Delegate to control FedCM's modal dialogs. An example of a use case is if a
// user is signed-in according to the FedCM IDP Sign-in Status API but we find
// that the user has no accounts, a failure dialog is shown. The failure dialog
// contains a button which opens a modal dialog and allows the user to complete
// the sign-in flow on the modal dialog. This delegate controls that modal
// dialog.
class CONTENT_EXPORT FederatedIdentityModalDialogViewDelegate {
 public:
  FederatedIdentityModalDialogViewDelegate() = default;
  virtual ~FederatedIdentityModalDialogViewDelegate() = default;

  // Closes the FedCM modal dialog, if any.
  virtual void OnClose() = 0;

  // The modal dialog has provided a token to resolve the original request.
  // `idp_config_url` is passed by value so that it remains valid even if the
  // implementation destructs the IdentityRegistry (e.g. by closing the
  // associated WebContents).
  // If account_id is nullopt, uses the account that was selected in the
  // account chooser.
  virtual bool OnResolve(GURL idp_config_url,
                         const std::optional<std::string>& account_id,
                         const std::string& token) = 0;
};

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_FEDERATED_IDENTITY_MODAL_DIALOG_VIEW_DELEGATE_H_