// Copyright 2019 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_METRICS_CACHED_METRICS_PROFILE_H_ #define CHROME_BROWSER_METRICS_CACHED_METRICS_PROFILE_H_ #include "base/memory/raw_ptr.h" class Profile; namespace metrics { // Caches a user profile to use in metrics providers if needed. Uses the first // signed-in profile, and sticks with it until that profile becomes invalid. class CachedMetricsProfile { … }; } // namespace metrics #endif // CHROME_BROWSER_METRICS_CACHED_METRICS_PROFILE_H_