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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js

Issue 2605693003: DevTools: introduce object previews experiment (Closed)
Patch Set: ac2 Created 3 years, 11 months 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/sources/WatchExpressionsSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
index 0ef1d30f1e9be8a613707668f0add09a33539fe6..7fade3e37387c4c7deb32bdc29bcfac381f5b900 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
@@ -335,7 +335,7 @@ Sources.WatchExpression = class extends Common.Object {
this._valueElement.textContent = Common.UIString('<not available>');
} else {
this._valueElement = Components.ObjectPropertiesSection.createValueElementWithCustomSupport(
- result, !!exceptionDetails, titleElement, this._linkifier);
+ result, !!exceptionDetails, false /* showPreview */, titleElement, this._linkifier);
}
var separatorElement = createElementWithClass('span', 'watch-expressions-separator');
separatorElement.textContent = ': ';

Powered by Google App Engine
This is Rietveld 408576698