chromium/components/assist_ranker/ranker_model.cc

// 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.

#include "components/assist_ranker/ranker_model.h"

#include <memory>

#include "base/time/time.h"
#include "components/assist_ranker/proto/ranker_model.pb.h"

namespace assist_ranker {

RankerModel::RankerModel() :{}

RankerModel::~RankerModel() {}

// static
std::unique_ptr<RankerModel> RankerModel::FromString(const std::string& data) {}

bool RankerModel::IsExpired() const {}

const std::string& RankerModel::GetSourceURL() const {}

std::string RankerModel::SerializeAsString() const {}

}  // namespace assist_ranker