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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/console-test.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/LayoutTests/http/tests/inspector/console-test.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js
index 9dfe3af80b7a15bdcc74f443b72546e40ae2390c..40efec26cdd6e5fdf240880e60f52a7b7fbd6f36 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js
@@ -287,7 +287,7 @@ InspectorTest.expandGettersInConsoleMessages = function(callback)
var messageViews = Console.ConsoleView.instance()._visibleViewMessages;
var properties = [];
var propertiesCount = 0;
- InspectorTest.addSniffer(Components.ObjectPropertyTreeElement.prototype, "_updateExpandable", propertyExpandableUpdated);
+ InspectorTest.addSniffer(ObjectUI.ObjectPropertyTreeElement.prototype, "_updateExpandable", propertyExpandableUpdated);
for (var i = 0; i < messageViews.length; ++i) {
var element = messageViews[i].element();
for (var node = element; node; node = node.traverseNextNode(element)) {
@@ -307,7 +307,7 @@ InspectorTest.expandGettersInConsoleMessages = function(callback)
properties[i].click();
InspectorTest.deprecatedRunAfterPendingDispatches(callback);
} else {
- InspectorTest.addSniffer(Components.ObjectPropertyTreeElement.prototype, "_updateExpandable", propertyExpandableUpdated);
+ InspectorTest.addSniffer(ObjectUI.ObjectPropertyTreeElement.prototype, "_updateExpandable", propertyExpandableUpdated);
}
}
}

Powered by Google App Engine
This is Rietveld 408576698