// Copyright 2021 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_BROWSER_INTEREST_GROUP_AD_AUCTION_RESULT_METRICS_H_ #define CONTENT_BROWSER_INTEREST_GROUP_AD_AUCTION_RESULT_METRICS_H_ #include <climits> #include "base/numerics/clamped_math.h" #include "base/time/time.h" #include "content/public/browser/page_user_data.h" namespace content { class Page; // Reports UMA about success / failure auction patterns, and implements a // feature parameter to control the maximum number of auctions per-page. class AdAuctionResultMetrics : public content::PageUserData<AdAuctionResultMetrics> { … }; } // namespace content #endif // CONTENT_BROWSER_INTEREST_GROUP_AD_AUCTION_RESULT_METRICS_H_