chromium/chrome/browser/ui/shared_highlighting/shared_highlighting_promo.h

// Copyright 2021 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_SHARED_HIGHLIGHTING_SHARED_HIGHLIGHTING_PROMO_H_
#define CHROME_BROWSER_UI_SHARED_HIGHLIGHTING_SHARED_HIGHLIGHTING_PROMO_H_

#include "base/memory/raw_ptr.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_contents_user_data.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "third_party/blink/public/mojom/link_to_text/link_to_text.mojom.h"

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

// SharedHighlightingPromo is responsible for displaying a promo when user
// opens a page with highlighted text.
class SharedHighlightingPromo
    : public content::WebContentsObserver,
      public content::WebContentsUserData<SharedHighlightingPromo> {};

#endif  // CHROME_BROWSER_UI_SHARED_HIGHLIGHTING_SHARED_HIGHLIGHTING_PROMO_H_