// 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 CONTENT_PUBLIC_BROWSER_AUCTION_RESULT_H_ #define CONTENT_PUBLIC_BROWSER_AUCTION_RESULT_H_ namespace content { // Final result of a FLEDGE auction or component auction. This auction could be // either on-device or on the bidding and auction server. Used for histograms. // Only recorded for valid auctions. These are used in histograms, so values of // existing entries must not change when adding/removing values, and obsolete // values must not be reused. enum class AuctionResult { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_AUCTION_RESULT_H_