chromium/chrome/browser/ui/views/tab_sharing/tab_capture_contents_border_helper.h

// Copyright 2022 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_TAB_SHARING_TAB_CAPTURE_CONTENTS_BORDER_HELPER_H_
#define CHROME_BROWSER_UI_VIEWS_TAB_SHARING_TAB_CAPTURE_CONTENTS_BORDER_HELPER_H_

#include "content/public/browser/web_contents_user_data.h"

namespace content {
class WebContents;
}

// Helps track whether the contents-border should be drawn.
// TODO(crbug.com/40207590): Support dynamic borders for tabs that only
// have a single capturer.
class TabCaptureContentsBorderHelper
    : public content::WebContentsUserData<TabCaptureContentsBorderHelper> {};

#endif  // CHROME_BROWSER_UI_VIEWS_TAB_SHARING_TAB_CAPTURE_CONTENTS_BORDER_HELPER_H_