Skip to content

Commit

Permalink
Add Fetch domain to SharedWorker
Browse files Browse the repository at this point in the history
Resolves:
#214
  • Loading branch information
joffrey-bion committed Nov 27, 2022
1 parent f3a932d commit 952e7f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions api/chrome-devtools-kotlin.api
Original file line number Diff line number Diff line change
Expand Up @@ -44968,6 +44968,7 @@ public final class org/hildan/chrome/devtools/targets/ServiceWorkerTarget$Compan

public abstract interface class org/hildan/chrome/devtools/targets/SharedWorkerTarget {
public static final field Companion Lorg/hildan/chrome/devtools/targets/SharedWorkerTarget$Companion;
public abstract fun getFetch ()Lorg/hildan/chrome/devtools/domains/fetch/FetchDomain;
public abstract fun getInspector ()Lorg/hildan/chrome/devtools/domains/inspector/InspectorDomain;
public abstract fun getIo ()Lorg/hildan/chrome/devtools/domains/io/IODomain;
public abstract fun getNetwork ()Lorg/hildan/chrome/devtools/domains/network/NetworkDomain;
Expand Down
5 changes: 3 additions & 2 deletions protocol/target_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,22 +70,23 @@
{
"name": "ServiceWorker",
"supportedDomains": [
"Fetch",
"IO",
"Inspector",
"Network",
"Fetch",
"Schema",
"Target"
]
},
{
"name": "SharedWorker",
"supportedDomains": [
"Fetch",
"IO",
"Inspector",
"Network",
"Schema",
"Target"
]
}
]
]

0 comments on commit 952e7f0

Please sign in to comment.