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

Side by Side Diff: content/browser/service_worker/service_worker_database.proto

Issue 248803003: ServiceWorker: Store registration data in ServiceWorkerDatabase (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 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 syntax = "proto2";
6
7 option optimize_for = LITE_RUNTIME;
8
9 package content;
10
11 message ServiceWorkerRegistrationData {
12 required int64 registration_id = 1;
13 required string scope_url = 2;
14 required string script_url = 3;
15
16 // Versions are first stored once they successfully install and become the
17 // waiting version. Then they are updated when they transition to the active
18 // version.
19 required int64 version_id = 5;
20
21 optional bool is_active = 6;
22 optional bool has_fetch_handler = 7;
23
24 // Serialized by Time::ToInternalValue().
25 optional int64 last_update_check_time = 8;
26 }
27
28 message ServiceWorkerResourceRecord {
29 required int64 resource_id = 1;
30 optional string url = 2;
michaeln 2014/04/24 00:35:04 since this is the first cut at it (and there is no
nhiroki 2014/04/24 05:57:30 Hmm... if we mark them as required, - need to set
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698