| Index: components/offline_pages/offline_page_archiver.cc
|
| diff --git a/components/offline_pages/offline_page_archiver.cc b/components/offline_pages/offline_page_archiver.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c9dea5dd2c2b3999628cccc6406b9dc22ac01be8
|
| --- /dev/null
|
| +++ b/components/offline_pages/offline_page_archiver.cc
|
| @@ -0,0 +1,29 @@
|
| +// Copyright 2015 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/offline_page_archiver.h"
|
| +
|
| +
|
| +namespace offline_pages {
|
| +
|
| +OfflinePageArchiver::Request::Request(const GURL& url)
|
| + : url_(url){
|
| +}
|
| +
|
| +OfflinePageArchiver::Request::~Request() {
|
| +}
|
| +
|
| +OfflinePageArchiver::Client::Client() {
|
| +}
|
| +
|
| +OfflinePageArchiver::Client::~Client() {
|
| +}
|
| +
|
| +OfflinePageArchiver::OfflinePageArchiver() {
|
| +}
|
| +
|
| +OfflinePageArchiver::~OfflinePageArchiver() {
|
| +}
|
| +
|
| +} // namespace offline_pages
|
|
|