1 // Copyright 2018 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/suggestions_provider.h"
6 
7 namespace offline_pages {
8 
9 PrefetchSuggestion::PrefetchSuggestion() = default;
10 
11 PrefetchSuggestion::PrefetchSuggestion(const PrefetchSuggestion&) = default;
12 
13 PrefetchSuggestion::PrefetchSuggestion(PrefetchSuggestion&&) = default;
14 
15 PrefetchSuggestion::~PrefetchSuggestion() = default;
16 
17 }  // namespace offline_pages
18