Chromium Code Reviews

Side by Side Diff: services/url_response_disk_cache/url_response_disk_cache_entry.mojom

Issue 1276073004: Offline By Default (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Use memcpy to solve alignment issue. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 [DartPackage="mojo_services"] 5 [DartPackage="mojo_services"]
6 module mojo; 6 module mojo;
7 7
8 struct CacheHeaders { 8 import "mojo/public/interfaces/network/url_response.mojom";
9 string name; 9
10 string value; 10 struct LevelDBKey {
11 string request_origin;
12 string url;
13 int64 timestamp;
11 }; 14 };
12 15
13 // One entry in the service cache. 16 // One entry in the service cache.
14 struct CacheEntry { 17 struct CacheEntry {
15 uint32 version = 0; 18 URLResponse response;
16 string url; 19 string cache_directory;
ppi 2015/09/08 13:45:45 Should this be called "client directory"?
qsr 2015/09/08 13:53:40 Not sure I agree. This directory is not in the con
17 string content_path; 20 string content_path;
18 array<CacheHeaders>? headers;
19 }; 21 };
OLDNEW

Powered by Google App Engine