Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Unified Diff: components/offline_pages/offline_page_archiver.cc

Issue 1174803002: [Offline] Adding archiver interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@offline-pages-store
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..c3c536b865065793dc3cdd59c8362c77d7d3dde8
--- /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

Powered by Google App Engine
This is Rietveld 408576698