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

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: Rename MoveIntoDir Created 5 years, 3 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 unified diff | Download patch
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 // These mojom structs are declared only to get generated serialization code
6 // (ie. they are not used for ipc).
6 module mojo; 7 module mojo;
7 8
8 struct CacheHeaders { 9 import "mojo/public/interfaces/network/url_response.mojom";
9 string name; 10
10 string value; 11 struct InternalEntryKey {
ppi 2015/09/08 15:46:26 Since we expose this in the iterator interface, mi
qsr 2015/09/11 15:47:58 Done.
12 string request_origin;
13 string url;
14 int64 timestamp;
11 }; 15 };
12 16
13 // One entry in the service cache. 17 // One entry in the service cache.
14 struct CacheEntry { 18 struct CacheEntry {
15 uint32 version = 0; 19 URLResponse response;
16 string url; 20 string cache_directory;
17 string content_path; 21 string content_path;
18 array<CacheHeaders>? headers;
19 }; 22 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698