File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -5906,7 +5906,13 @@ declare namespace chrome.offscreen {
5906
5906
/** The offscreen document needs to use WebRTC APIs. */
5907
5907
WEB_RTC = "WEB_RTC",
5908
5908
/** The offscreen document needs to interact with the clipboard APIs(e.g. Navigator.clipboard). */
5909
- CLIPBOARD = "CLIPBOARD"
5909
+ CLIPBOARD = "CLIPBOARD",
5910
+ /** Specifies that the offscreen document needs access to localStorage. */
5911
+ LOCAL_STORAGE = "LOCAL_STORAGE",
5912
+ /** Specifies that the offscreen document needs to spawn workers. */
5913
+ WORKERS = "WORKERS",
5914
+ /** Specifies that the offscreen document needs to use navigator.geolocation. */
5915
+ GEOLOCATION = "GEOLOCATION",
5910
5916
}
5911
5917
5912
5918
/** The parameters describing the offscreen document to create. */
You can’t perform that action at this time.
0 commit comments