-
Notifications
You must be signed in to change notification settings - Fork 920
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hide "Trust Token" item from devtools (#17118)
* Hide "Trust Token" item from devtools [We disabled the "Trust token" feature](#8039), so we shouldn't reveal this item.
- Loading branch information
1 parent
1b322c3
commit 2dadf10
Showing
3 changed files
with
24 additions
and
2 deletions.
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
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
13 changes: 13 additions & 0 deletions
13
...party/devtools-frontend/src/front_end-panels-application-ApplicationPanelSidebar.ts.patch
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,13 @@ | ||
diff --git a/front_end/panels/application/ApplicationPanelSidebar.ts b/front_end/panels/application/ApplicationPanelSidebar.ts | ||
index 9becc447d320e36196e7f475984d8b64899c0cdb..cf3375f8003ea973a525740029215f83cd4e1763 100644 | ||
--- a/front_end/panels/application/ApplicationPanelSidebar.ts | ||
+++ b/front_end/panels/application/ApplicationPanelSidebar.ts | ||
@@ -352,7 +352,7 @@ export class ApplicationPanelSidebar extends UI.Widget.VBox implements SDK.Targe | ||
storageTreeElement.appendChild(this.cookieListTreeElement); | ||
|
||
this.trustTokensTreeElement = new TrustTokensTreeElement(panel); | ||
- storageTreeElement.appendChild(this.trustTokensTreeElement); | ||
+ // storageTreeElement.appendChild(this.trustTokensTreeElement); | ||
|
||
this.interestGroupTreeElement = new InterestGroupTreeElement(panel); | ||
storageTreeElement.appendChild(this.interestGroupTreeElement); |