| 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..35c48ea41e472d61a4009cc1e1c41ee1d116c7e9
|
| --- /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::OnNewURLsToPrefetch(
|
| + const std::vector<GURL> url_suggestions) {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +void PrefetchServiceImpl::RemoveAllUnprocessedURLsToPrefetch() {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +void PrefetchServiceImpl::Shutdown() {}
|
| +
|
| +} // namespace offline_pages
|
|
|