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

Unified Diff: content/browser/service_worker/service_worker_cache.proto

Issue 424863002: Fill in some of ServiceWorkerFetchStores. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cache_storage
Patch Set: Updated license Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
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;
}
« no previous file with comments | « content/browser/service_worker/BUILD.gn ('k') | content/browser/service_worker/service_worker_fetch_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698