-
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
[We disabled the "Trust token" feature](#8039), so we shouldn't reveal this item.
- Loading branch information
1 parent
f41821f
commit 9a345fc
Showing
3 changed files
with
24 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
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 5d024c6d3ce493ae4df798593d4a22f84e4acf2d..ce84d171b90d9f7f9363a90513236ab34fca2b06 100644 | ||
--- a/front_end/panels/application/ApplicationPanelSidebar.ts | ||
+++ b/front_end/panels/application/ApplicationPanelSidebar.ts | ||
@@ -355,7 +355,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); |