// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_UI_METRICS_SADTAB_METRICS_TYPES_H_ #define COMPONENTS_UI_METRICS_SADTAB_METRICS_TYPES_H_ namespace ui_metrics { // An enum for reporting interaction events to a UMA histogram. // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.components.ui_metrics enum class SadTabEvent { … }; // Describes the mode of the Sad Tab as being in 'reload' mode. const char kSadTabReloadHistogramKey[] = …; // Describes the mode of the Sad Tab as being in 'feedback' mode. const char kSadTabFeedbackHistogramKey[] = …; } #endif // COMPONENTS_UI_METRICS_SADTAB_METRICS_TYPES_H_