// Copyright 2022 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_UI_GLOBAL_MEDIA_CONTROLS_MEDIA_ITEM_UI_METRICS_H_ #define CHROME_BROWSER_UI_GLOBAL_MEDIA_CONTROLS_MEDIA_ITEM_UI_METRICS_H_ #include "chrome/browser/ui/media_router/media_cast_mode.h" #include "components/media_router/common/media_sink.h" namespace { const char kStartCastingModeHistogramName[] = …; const char kStopCastingModeHistogramName[] = …; const char kCastStartStopHistogramName[] = …; // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum GlobalMediaControlsCastMode { … }; } // namespace class MediaItemUIMetrics { … }; #endif // CHROME_BROWSER_UI_GLOBAL_MEDIA_CONTROLS_MEDIA_ITEM_UI_METRICS_H_