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

Side by Side Diff: components/offline_pages/proto/offline_pages.proto

Issue 1345043002: Update access info when an offline page is being visited (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some more fixes Created 5 years, 3 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
« no previous file with comments | « components/offline_pages/offline_page_model_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Offline page item protocol for storage and exchanging of offline page 5 // Offline page item protocol for storage and exchanging of offline page
6 // metadata. 6 // metadata.
7 7
8 syntax = "proto2"; 8 syntax = "proto2";
9 9
10 option optimize_for = LITE_RUNTIME; 10 option optimize_for = LITE_RUNTIME;
(...skipping 15 matching lines...) Expand all
26 required string file_path = 4; 26 required string file_path = 4;
27 27
28 // Size of the offline archive. 28 // Size of the offline archive.
29 optional int64 file_size = 5; 29 optional int64 file_size = 5;
30 30
31 // Creation time of the offline archive. 31 // Creation time of the offline archive.
32 optional int64 creation_time = 6; 32 optional int64 creation_time = 6;
33 33
34 // Last access time of the offline archive. 34 // Last access time of the offline archive.
35 optional int64 last_access_time = 7; 35 optional int64 last_access_time = 7;
36
37 // Number of times that the offline archive has been accessed.
38 optional int32 access_count = 8;
36 } 39 }
OLDNEW
« no previous file with comments | « components/offline_pages/offline_page_model_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698