chromium/components/commerce/core/shopping_power_bookmark_data_provider.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_CORE_SHOPPING_POWER_BOOKMARK_DATA_PROVIDER_H_
#define COMPONENTS_COMMERCE_CORE_SHOPPING_POWER_BOOKMARK_DATA_PROVIDER_H_

#include "base/memory/raw_ptr.h"
#include "components/power_bookmarks/core/power_bookmark_data_provider.h"

namespace power_bookmarks {
class PowerBookmarkService;
class PowerBookmarkMeta;
}  // namespace power_bookmarks

namespace commerce {

class ShoppingService;

// Responsible for automatically attaching product information, if available,
// to a bookmarks when it is saved.
class ShoppingPowerBookmarkDataProvider
    : public power_bookmarks::PowerBookmarkDataProvider {};

}  // namespace commerce

#endif  // COMPONENTS_COMMERCE_CORE_SHOPPING_POWER_BOOKMARK_DATA_PROVIDER_H_