chromium/chrome/browser/ui/tab_dialogs.h

// Copyright 2014 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_TAB_DIALOGS_H_
#define CHROME_BROWSER_UI_TAB_DIALOGS_H_

#include <set>

#include "base/functional/callback_forward.h"
#include "base/supports_user_data.h"
#include "extensions/common/extension_id.h"
#include "ui/gfx/native_widget_types.h"

class Browser;

namespace content {
class RenderWidgetHost;
class WebContents;
}  // namespace content

namespace ui {
class ProfileSigninConfirmationDelegate;
}

// A cross-platform interface for invoking various tab modal dialogs/bubbles.
class TabDialogs : public base::SupportsUserData::Data {};

#endif  // CHROME_BROWSER_UI_TAB_DIALOGS_H_