Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / content / browser / service_worker / service_worker_cache.proto
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 ServiceWorkerCacheStorageIndex {
12   message Cache {
13     required string name = 1;
14     required int32 size = 2;
15   }
16   repeated Cache cache = 1;
17 }