Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js

Issue 2487293002: DevTools: introduce sync checkmarks icons in StylesSidebarPane. (Closed)
Patch Set: address comments Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js
index 6490ca1c38e0adf744a25bf91a075b62b6613906..8ec1e4c43d22a33b462250cb540c5080f007a66c 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js
@@ -40,7 +40,7 @@ WebInspector.StylesSidebarPane = class extends WebInspector.ElementsSidebarPane
this._sectionsContainer = this.element.createChild('div');
this._swatchPopoverHelper = new WebInspector.SwatchPopoverHelper();
- this._linkifier = new WebInspector.Linkifier(WebInspector.StylesSidebarPane._maxLinkLength);
+ this._linkifier = new WebInspector.Linkifier(WebInspector.StylesSidebarPane._maxLinkLength, /* useLinkDecorator */ true);
this.element.classList.add('styles-pane');

Powered by Google App Engine
This is Rietveld 408576698