chromium/components/commerce/content/browser/hint/commerce_hint_tab_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 COMPONENTS_COMMERCE_CONTENT_BROWSER_HINT_COMMERCE_HINT_TAB_HELPER_H_
#define COMPONENTS_COMMERCE_CONTENT_BROWSER_HINT_COMMERCE_HINT_TAB_HELPER_H_

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

namespace commerce_hint {

// Tab helper to observe commerce hints on browser side.
class CommerceHintTabHelper
    : public content::WebContentsObserver,
      public content::WebContentsUserData<CommerceHintTabHelper> {};

}  // namespace commerce_hint

#endif  // COMPONENTS_COMMERCE_CONTENT_BROWSER_HINT_COMMERCE_HINT_TAB_HELPER_H_