// 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 CHROME_BROWSER_UI_VIEWS_WEBID_FEDCM_MODAL_DIALOG_VIEW_H_ #define CHROME_BROWSER_UI_VIEWS_WEBID_FEDCM_MODAL_DIALOG_VIEW_H_ #include "base/memory/raw_ptr.h" #include "base/memory/weak_ptr.h" #include "content/public/browser/web_contents_delegate.h" #include "content/public/browser/web_contents_observer.h" // A dialog allowing the user to complete a flow (e.g. signing in to an identity // provider) prompted by FedCM. // TODO(crbug.com/40263254): Rename modal dialog to pop-up window. class FedCmModalDialogView : public content::WebContentsObserver { … }; #endif // CHROME_BROWSER_UI_VIEWS_WEBID_FEDCM_MODAL_DIALOG_VIEW_H_