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

Side by Side Diff: content/browser/cache_storage/cache_storage.proto

Issue 2516353002: Introduce url_list to the Response scheme of CacheStorage. (Closed)
Patch Set: implicit conversion WebURL <-> GURL and WebVector <- vector Created 4 years 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 | « no previous file | content/browser/cache_storage/cache_storage_cache.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 syntax = "proto2"; 5 syntax = "proto2";
6 6
7 option optimize_for = LITE_RUNTIME; 7 option optimize_for = LITE_RUNTIME;
8 8
9 package content.proto; 9 package content.proto;
10 10
(...skipping 23 matching lines...) Expand all
34 DEFAULT_TYPE = 2; 34 DEFAULT_TYPE = 2;
35 ERROR_TYPE = 3; 35 ERROR_TYPE = 3;
36 OPAQUE_TYPE = 4; 36 OPAQUE_TYPE = 4;
37 OPAQUE_REDIRECT_TYPE = 5; 37 OPAQUE_REDIRECT_TYPE = 5;
38 } 38 }
39 39
40 required int32 status_code = 1; 40 required int32 status_code = 1;
41 required string status_text = 2; 41 required string status_text = 2;
42 required ResponseType response_type = 3; 42 required ResponseType response_type = 3;
43 repeated CacheHeaderMap headers = 4; 43 repeated CacheHeaderMap headers = 4;
44 optional string url = 5; 44 optional string url = 5 [deprecated = true];
45 optional int64 response_time = 6; 45 optional int64 response_time = 6;
46 repeated string cors_exposed_header_names = 7; 46 repeated string cors_exposed_header_names = 7;
47 repeated string url_list = 8;
47 } 48 }
48 49
49 message CacheMetadata { 50 message CacheMetadata {
50 required CacheRequest request = 1; 51 required CacheRequest request = 1;
51 required CacheResponse response = 2; 52 required CacheResponse response = 2;
52 optional int64 entry_time = 3; 53 optional int64 entry_time = 3;
53 } 54 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/cache_storage/cache_storage_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698