// 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 CONTENT_SERVICES_AUCTION_WORKLET_DEPRECATED_URL_LAZY_FILLER_H_ #define CONTENT_SERVICES_AUCTION_WORKLET_DEPRECATED_URL_LAZY_FILLER_H_ #include <string_view> #include "base/memory/raw_ptr.h" #include "content/services/auction_worklet/lazy_filler.h" #include "v8/include/v8-forward.h" class GURL; namespace auction_worklet { class AuctionV8Helper; class AuctionV8Logger; // Helper class to display a warning when a deprecated field of an object // containing a URL is accessed. class DeprecatedUrlLazyFiller : public LazyFiller { … }; } // namespace auction_worklet #endif // CONTENT_SERVICES_AUCTION_WORKLET_DEPRECATED_URL_LAZY_FILLER_H_