blob: e25cd0567899eb19d268c94a94755ff87f23ca54 [file] [log] [blame]
// Copyright 2020 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_PREDICTORS_PREDICTORS_ENUMS_H_
#define CHROME_BROWSER_PREDICTORS_PREDICTORS_ENUMS_H_
namespace predictors {
// Enumerates the states for when optimization hints were received by the
// loading predictor if predictions were requested from the Optimization Guide
// for the navigation.
// This should be kept in sync with
// LoadingPredictorOptimizationHintsReceiveStatus in enums.xml.
enum class OptimizationHintsReceiveStatus {
kUnknown,
kBeforeNavigationFinish,
kAfterNavigationFinish,
kAfterRedirectOrNextNavigationStart,
// Add new values above this line.
kMaxValue = kAfterRedirectOrNextNavigationStart,
};
} // namespace predictors
#endif // CHROME_BROWSER_PREDICTORS_PREDICTORS_ENUMS_H_