// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_JAVASCRIPT_DIALOGS_TAB_MODAL_DIALOG_MANAGER_DELEGATE_H_ #define COMPONENTS_JAVASCRIPT_DIALOGS_TAB_MODAL_DIALOG_MANAGER_DELEGATE_H_ #include <string> #include "base/functional/callback_forward.h" #include "base/memory/weak_ptr.h" #include "content/public/browser/javascript_dialog_manager.h" namespace javascript_dialogs { class TabModalDialogView; // This interface provides platform-specific controller functionality to // TabModalDialogManager. class TabModalDialogManagerDelegate { … }; } // namespace javascript_dialogs #endif // COMPONENTS_JAVASCRIPT_DIALOGS_TAB_MODAL_DIALOG_MANAGER_DELEGATE_H_