chromium/components/offline_pages/core/background/get_requests_task.cc

// Copyright 2016 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/offline_pages/core/background/get_requests_task.h"

#include <vector>

#include "base/functional/bind.h"

namespace offline_pages {

GetRequestsTask::GetRequestsTask(
    RequestQueueStore* store,
    RequestQueueStore::GetRequestsCallback callback)
    :{}

GetRequestsTask::~GetRequestsTask() {}

void GetRequestsTask::Run() {}

void GetRequestsTask::ReadRequest() {}

void GetRequestsTask::CompleteWithResult(
    bool success,
    std::vector<std::unique_ptr<SavePageRequest>> requests) {}

}  // namespace offline_pages