chromium/components/offline_pages/core/offline_page_visuals.h

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

#ifndef COMPONENTS_OFFLINE_PAGES_CORE_OFFLINE_PAGE_VISUALS_H_
#define COMPONENTS_OFFLINE_PAGES_CORE_OFFLINE_PAGE_VISUALS_H_

#include <stdint.h>
#include <iosfwd>
#include <string>

#include "base/time/time.h"

namespace offline_pages {

// Visuals for an offline page. This maps to a row in the page_thumbnails
// table.
struct OfflinePageVisuals {};

std::ostream& operator<<(std::ostream& out, const OfflinePageVisuals& visuals);
}  // namespace offline_pages

#endif  // COMPONENTS_OFFLINE_PAGES_CORE_OFFLINE_PAGE_VISUALS_H_