| Index: components/offline_pages/core/prefetch/prefetch_service_impl.cc
|
| diff --git a/components/offline_pages/core/prefetch/prefetch_service_impl.cc b/components/offline_pages/core/prefetch/prefetch_service_impl.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..def94b943eaa3eba7f78f42f2751057c79e9b33a
|
| --- /dev/null
|
| +++ b/components/offline_pages/core/prefetch/prefetch_service_impl.cc
|
| @@ -0,0 +1,22 @@
|
| +// Copyright 2017 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "components/offline_pages/core/prefetch/prefetch_service_impl.h"
|
| +
|
| +namespace offline_pages {
|
| +
|
| +PrefetchServiceImpl::PrefetchServiceImpl() {}
|
| +PrefetchServiceImpl::~PrefetchServiceImpl() = default;
|
| +
|
| +void PrefetchServiceImpl::OnNewURLSuggestions(
|
| + const std::vector<GURL> url_suggestions) {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +void PrefetchServiceImpl::RemoveAllUnprocessedURLSuggestions() {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +void PrefetchServiceImpl::Shutdown() {}
|
| +
|
| +} // namespace offline_pages
|
|
|