1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "components/offline_pages/core/prefetch/prefetch_item.h"
6 
7 #include <ostream>
8 
9 #include "base/strings/string_number_conversions.h"
10 #include "base/strings/utf_string_conversions.h"
11 #include "components/offline_pages/core/offline_store_utils.h"
12 
13 namespace offline_pages {
14 
15 PrefetchItem::PrefetchItem() = default;
16 
17 PrefetchItem::PrefetchItem(PrefetchItem&& other) = default;
18 
19 PrefetchItem::~PrefetchItem() = default;
20 
21 }  // namespace offline_pages
22