| Index: content/browser/service_worker/service_worker_cache.proto
|
| diff --git a/components/leveldb_proto/testing/proto/test.proto b/content/browser/service_worker/service_worker_cache.proto
|
| similarity index 52%
|
| copy from components/leveldb_proto/testing/proto/test.proto
|
| copy to content/browser/service_worker/service_worker_cache.proto
|
| index 84981051657158a9eb44ddcd5cd8b63556a1e97c..b271df63b0ca1b1b4a7e52d413fea01b0bc1e4b9 100644
|
| --- a/components/leveldb_proto/testing/proto/test.proto
|
| +++ b/content/browser/service_worker/service_worker_cache.proto
|
| @@ -6,15 +6,12 @@ syntax = "proto2";
|
|
|
| option optimize_for = LITE_RUNTIME;
|
|
|
| -package leveldb_proto;
|
| +package content;
|
|
|
| -// A proto to test leveldb_proto::ProtoDatabaseImpl.
|
| -//
|
| -// Next tag: 3
|
| -message TestProto {
|
| - // Arbitary id.
|
| - optional string id = 1;
|
| -
|
| - // Arbitrary data.
|
| - optional string data = 2;
|
| +message ServiceWorkerCacheStorageIndex {
|
| + message Cache {
|
| + required string name = 1;
|
| + required int32 size = 2;
|
| + }
|
| + repeated Cache cache = 1;
|
| }
|
|
|