chromium/components/dom_distiller/core/distillable_page_detector.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {}

}  // namespace dom_distiller