#include "components/dom_distiller/core/distillable_page_detector.h"
#include <stddef.h>
#include <utility>
#include "base/check.h"
#include "components/grit/components_resources.h"
#include "ui/base/resource/resource_bundle.h"
namespace dom_distiller {
const DistillablePageDetector* DistillablePageDetector::GetNewModel() { … }
const DistillablePageDetector* DistillablePageDetector::GetLongPageModel() { … }
DistillablePageDetector::DistillablePageDetector(
std::unique_ptr<AdaBoostProto> proto)
: … { … }
DistillablePageDetector::~DistillablePageDetector() = default;
bool DistillablePageDetector::Classify(
const std::vector<double>& features) const { … }
double DistillablePageDetector::Score(
const std::vector<double>& features) const { … }
double DistillablePageDetector::GetThreshold() const { … }
}