// 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 COMPONENTS_COMMERCE_CORE_WEB_EXTRACTOR_H_ #define COMPONENTS_COMMERCE_CORE_WEB_EXTRACTOR_H_ #include "base/functional/callback.h" #include "base/memory/weak_ptr.h" #include "components/commerce/core/web_wrapper.h" namespace commerce { // The class for extracting commerce-related information locally from // `WebWrapper`. class WebExtractor { … }; } // namespace commerce #endif // COMPONENTS_COMMERCE_CORE_WEB_EXTRACTOR_H_