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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js

Issue 2297443002: DevTools: show extension name in console execution context selector. (Closed)
Patch Set: Created 4 years, 4 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 fd341208f6d3b16d4bca85a44704212991392dc1..aeb87022add589d4dea90b7a6363fd4627fc46c7 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/console-test.js
@@ -398,7 +398,7 @@ InspectorTest.waitUntilNthMessageReceivedPromise = function(count)
InspectorTest.changeExecutionContext = function(namePrefix)
{
- var selector = WebInspector.ConsoleView.instance()._executionContextModel._selectElement;
+ var selector = WebInspector.ConsoleView.instance()._consoleContextSelector._selectElement;
var option = selector.firstChild;
while (option) {
if (option.textContent && option.textContent.startsWith(namePrefix))
@@ -410,7 +410,7 @@ InspectorTest.changeExecutionContext = function(namePrefix)
return;
}
option.selected = true;
- WebInspector.ConsoleView.instance()._executionContextModel._executionContextChanged();
+ WebInspector.ConsoleView.instance()._consoleContextSelector._executionContextChanged();
}
InspectorTest.waitForConsoleMessages = function(expectedCount, callback)
« no previous file with comments | « chrome/browser/devtools/devtools_sanity_browsertest.cc ('k') | third_party/WebKit/Source/devtools/front_end/Tests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698