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

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

#include <ostream>

#include "base/json/json_writer.h"
#include "base/values.h"
#include "components/offline_pages/core/background/offliner.h"
#include "components/offline_pages/core/background/save_page_request.h"

namespace offline_pages {
namespace {

const char* EnumString(SavePageRequest::AutoFetchNotificationState value) {}
}  // namespace

std::string SavePageRequest::ToString() const {}

// Implemented in test_util.cc.
std::ostream& operator<<(std::ostream& out,
                         SavePageRequest::AutoFetchNotificationState value) {}

std::ostream& operator<<(std::ostream& out,
                         const Offliner::RequestStatus& value) {}

}  // namespace offline_pages