-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e08c6d9
commit f769255
Showing
5 changed files
with
66 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
e1d9df224c631e8828035149dee39e55f82ca40c | ||
0af5ec37583a557092294dc4ccc432f6eafc5003 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: "SharedDictionaryInfo Object" | ||
description: "" | ||
slug: shared-dictionary-info | ||
hide_title: false | ||
--- | ||
|
||
# SharedDictionaryInfo Object | ||
|
||
* `match` string - The matching path pattern for the dictionary which was declared in 'use-as-dictionary' response header's `match` option. | ||
* `matchDestinations` string[] - An array of matching destinations for the dictionary which was declared in 'use-as-dictionary' response header's `match-dest` option. | ||
* `id` string - The Id for the dictionary which was declared in 'use-as-dictionary' response header's `id` option. | ||
* `dictionaryUrl` string - URL of the dictionary. | ||
* `lastFetchTime` Date - The time of when the dictionary was received from the network layer. | ||
* `responseTime` Date - The time of when the dictionary was received from the server. For cached responses, this time could be "far" in the past. | ||
* `expirationDuration` number - The expiration time for the dictionary which was declared in 'use-as-dictionary' response header's `expires` option in seconds. | ||
* `lastUsedTime` Date - The time when the dictionary was last used. | ||
* `size` number - The amount of bytes stored for this shared dictionary information object in Chromium's internal storage (usually Sqlite). | ||
* `hash` string - The sha256 hash of the dictionary binary. |
12 changes: 12 additions & 0 deletions
12
docs/latest/api/structures/shared-dictionary-usage-info.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: "SharedDictionaryUsageInfo Object" | ||
description: "" | ||
slug: shared-dictionary-usage-info | ||
hide_title: false | ||
--- | ||
|
||
# SharedDictionaryUsageInfo Object | ||
|
||
* `frameOrigin` string - The origin of the frame where the request originates. It’s specific to the individual frame making the request and is defined by its scheme, host, and port. In practice, will look like a URL. | ||
* `topFrameSite` string - The site of the top-level browsing context (the main frame or tab that contains the request). It’s less granular than `frameOrigin` and focuses on the broader "site" scope. In practice, will look like a URL. | ||
* `totalSizeBytes` number - The amount of bytes stored for this shared dictionary information object in Chromium's internal storage (usually Sqlite). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters