// Copyright 2024 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_VISITED_URL_RANKING_URL_DEDUPLICATION_SEARCH_ENGINE_URL_STRIP_HANDLER_H_ #define CHROME_BROWSER_VISITED_URL_RANKING_URL_DEDUPLICATION_SEARCH_ENGINE_URL_STRIP_HANDLER_H_ #include <string> #include "base/memory/raw_ptr.h" #include "components/search_engines/template_url_service.h" #include "components/url_deduplication/url_strip_handler.h" class GURL; class TemplateURL; namespace url_deduplication { class SearchEngineURLStripHandler : public URLStripHandler { … }; } // namespace url_deduplication #endif // CHROME_BROWSER_VISITED_URL_RANKING_URL_DEDUPLICATION_SEARCH_ENGINE_URL_STRIP_HANDLER_H_