chromium/chrome/browser/ui/views/desktop_capture/share_this_tab_dialog_views.h

// 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_DESKTOP_CAPTURE_SHARE_THIS_TAB_DIALOG_VIEWS_H_
#define CHROME_BROWSER_UI_VIEWS_DESKTOP_CAPTURE_SHARE_THIS_TAB_DIALOG_VIEWS_H_

#include <string>

#include "base/memory/raw_ptr.h"
#include "build/build_config.h"
#include "chrome/browser/media/webrtc/desktop_media_picker.h"
#include "chrome/browser/ui/views/desktop_capture/share_this_tab_source_view.h"
#include "ui/base/interaction/element_identifier.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/controls/button/toggle_button.h"
#include "ui/views/controls/label.h"
#include "ui/views/window/dialog_delegate.h"

class ShareThisTabDialogViews;

// Dialog view used for ShareThisTabDialogViews.
class ShareThisTabDialogView : public views::DialogDelegateView {};

// Implementation of DesktopMediaPicker for the ShareThisTabDialogView.
class ShareThisTabDialogViews : public DesktopMediaPicker {};

#endif  // CHROME_BROWSER_UI_VIEWS_DESKTOP_CAPTURE_SHARE_THIS_TAB_DIALOG_VIEWS_H_