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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 //
5 // Offline page item protocol for storage and exchanging of offline page
6 // metadata.
7
8 syntax = "proto2";
9
10 option optimize_for = LITE_RUNTIME;
11 option retain_unknown_fields = true;
12
13 package offline_pages;
14
15 message OfflinePageEntry {
16 // URL of the offline page.
17 required string url = 1;
18
19 // Title of the offline page.
20 required string title = 2;
21
22 // Version of the offline page metadata.
23 required int32 version = 3;
24
25 // Path to the offline archive.
26 required string file_path = 4;
27
28 // Size of the offline archive.
29 optional int64 file_size = 5;
30
31 // Creation time of the offline archive.
32 optional int64 creation_time = 6;
33
34 // Last access time of the offline archive.
35 optional int64 last_access_time = 7;
36 }
OLDNEW
« 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