// 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. #ifndef COMPONENTS_OFFLINE_PAGES_CORE_OFFLINE_PAGE_ITEM_H_ #define COMPONENTS_OFFLINE_PAGES_CORE_OFFLINE_PAGE_ITEM_H_ #include <stdint.h> #include <iosfwd> #include <string> #include "base/files/file_path.h" #include "base/time/time.h" #include "components/offline_pages/core/client_id.h" #include "url/gurl.h" namespace offline_pages { // Metadata of the offline page. struct OfflinePageItem { … }; // This operator is for testing only, see offline_page_test_utils.cc. // This is provided here to avoid ODR problems. std::ostream& operator<<(std::ostream& out, const OfflinePageItem& value); } // namespace offline_pages #endif // COMPONENTS_OFFLINE_PAGES_CORE_OFFLINE_PAGE_ITEM_H_