blob: e80075ac77304b8f2267bb6a6575d376fbeec772 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_OPTIMIZATION_GUIDE_OPTIMIZATION_GUIDE_CONSTANTS_H_
#define COMPONENTS_OPTIMIZATION_GUIDE_OPTIMIZATION_GUIDE_CONSTANTS_H_
#include "base/files/file_path.h"
namespace optimization_guide {
// The name of the file that stores the unindexed hints.
extern const base::FilePath::CharType kUnindexedHintsFileName[];
extern const char kRulesetFormatVersionString[];
// The remote Optimization Guide Service production server to fetch hints from.
extern const char kOptimizationGuideServiceGetHintsDefaultURL[];
// The remote Optimization Guide Service production server to fetch models and
// hosts features from.
extern const char kOptimizationGuideServiceGetModelsDefaultURL[];
// The local histogram used to record that the component hints are stored in
// the cache and are ready for use.
extern const char kLoadedHintLocalHistogramString[];
// The folder where the hint data will be stored on disk.
extern const char kOptimizationGuideHintStore[];
// The folder where the prediction model and host model features data will be
// stored on disk.
extern const char kOptimizationGuidePredictionModelAndFeaturesStore[];
} // namespace optimization_guide
#endif // COMPONENTS_OPTIMIZATION_GUIDE_OPTIMIZATION_GUIDE_CONSTANTS_H_