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

Unified Diff: chrome/browser/offline_pages/offline_pages.proto

Issue 1226173004: Componentize //chrome/browser/offline_pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated for android port Created 5 years, 5 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: chrome/browser/offline_pages/offline_pages.proto
diff --git a/chrome/browser/offline_pages/offline_pages.proto b/chrome/browser/offline_pages/offline_pages.proto
deleted file mode 100644
index 16f23b1b517976effa9fc1b2908f63e410a02c0a..0000000000000000000000000000000000000000
--- a/chrome/browser/offline_pages/offline_pages.proto
+++ /dev/null
@@ -1,36 +0,0 @@
-// 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.
-//
-// Offline page item protocol for storage and exchanging of offline page
-// metadata.
-
-syntax = "proto2";
-
-option optimize_for = LITE_RUNTIME;
-option retain_unknown_fields = true;
-
-package offline_pages;
-
-message OfflinePageEntry {
- // URL of the offline page.
- required string url = 1;
-
- // Title of the offline page.
- required string title = 2;
-
- // Version of the offline page metadata.
- required int32 version = 3;
-
- // Path to the offline archive.
- required string file_path = 4;
-
- // Size of the offline archive.
- optional int64 file_size = 5;
-
- // Creation time of the offline archive.
- optional int64 creation_time = 6;
-
- // Last access time of the offline archive.
- optional int64 last_access_time = 7;
-}
« no previous file with comments | « chrome/browser/offline_pages/offline_page_metadata_store_impl_unittest.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698