summaryrefslogtreecommitdiffstats
path: root/components/offline_pages/offline_page_item.h
diff options
context:
space:
mode:
authorfgorski <fgorski@chromium.org>2015-06-02 17:28:20 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-03 00:29:39 +0000
commitd0e3446c634964ac8ec0396df7ec1d25b3908740 (patch)
treefce382e63325a1237201f2db9fb7dc7e8835d687 /components/offline_pages/offline_page_item.h
parent3346ab66acfd8bc8321edd794f238e8cfc0e7f9c (diff)
downloadchromium_src-d0e3446c634964ac8ec0396df7ec1d25b3908740.zip
chromium_src-d0e3446c634964ac8ec0396df7ec1d25b3908740.tar.gz
chromium_src-d0e3446c634964ac8ec0396df7ec1d25b3908740.tar.bz2
Initial commit of offline pages.
* Creates OfflinePageModel (not implemented) and basic OfflinePageItem * Adds components/offline_pages with OWNERS and DEPS * Creates components/offline_pages.gypi * Includes offline pages across gyp files BUG=491352 Review URL: https://codereview.chromium.org/1147983005 Cr-Commit-Position: refs/heads/master@{#332508}
Diffstat (limited to 'components/offline_pages/offline_page_item.h')
-rw-r--r--components/offline_pages/offline_page_item.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/components/offline_pages/offline_page_item.h b/components/offline_pages/offline_page_item.h
new file mode 100644
index 0000000..f00e503
--- /dev/null
+++ b/components/offline_pages/offline_page_item.h
@@ -0,0 +1,53 @@
+// 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.
+
+#ifndef COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_ITEM_H_
+#define COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_ITEM_H_
+
+#include <string>
+
+#include "base/basictypes.h"
+#include "base/files/file_path.h"
+#include "base/time/time.h"
+#include "url/gurl.h"
+
+namespace offline_pages {
+
+// Metadata of the offline page.
+struct OfflinePageItem {
+ public:
+ OfflinePageItem();
+ OfflinePageItem(const GURL& url,
+ const std::string& title,
+ const base::FilePath& file_path,
+ int64 file_size);
+ OfflinePageItem(const GURL& url,
+ const std::string& title,
+ const base::FilePath& file_path,
+ int64 file_size,
+ const base::Time& creation_time);
+ ~OfflinePageItem();
+
+ // Gets a URL of the file under |file_path|.
+ GURL GetOfflineURL();
+
+ // The URL of the page.
+ GURL url;
+ // The title of the page.
+ std::string title;
+ // Version of the offline page item.
+ int version;
+ // The file path to the archive with a local copy of the page.
+ base::FilePath file_path;
+ // The size of the offline copy.
+ int64 file_size;
+ // The time when the offline archive was created.
+ base::Time creation_time;
+ // The time when the offline archive was last accessed.
+ base::Time last_access_time;
+};
+
+} // namespace offline_pages
+
+#endif // COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_ITEM_H_