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

Unified Diff: third_party/WebKit/Source/devtools/front_end/audits/AuditExtensionCategory.js

Issue 2712513002: DevTools: extract ObjectUI module from Components (Closed)
Patch Set: fix build.gn Created 3 years, 10 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/audits/AuditExtensionCategory.js
diff --git a/third_party/WebKit/Source/devtools/front_end/audits/AuditExtensionCategory.js b/third_party/WebKit/Source/devtools/front_end/audits/AuditExtensionCategory.js
index 9c78a1ce8917eaf0a422dab6a9c827013bc57828..e6e54d2f8b54b1ae01e505746351d90dff23abca 100644
--- a/third_party/WebKit/Source/devtools/front_end/audits/AuditExtensionCategory.js
+++ b/third_party/WebKit/Source/devtools/front_end/audits/AuditExtensionCategory.js
@@ -192,7 +192,7 @@ Audits.AuditExtensionFormatters = {
object: function(expression, title, evaluateOptions) {
var parentElement = createElement('div');
function onEvaluate(remoteObject) {
- var section = new Components.ObjectPropertiesSection(remoteObject, title);
+ var section = new ObjectUI.ObjectPropertiesSection(remoteObject, title);
section.expand();
section.editable = false;
parentElement.appendChild(section.element);

Powered by Google App Engine
This is Rietveld 408576698