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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-revoke-error.html

Issue 2751193003: [DevTools] Move ConsoleModel to it's own module (Closed)
Patch Set: Created 3 years, 9 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/inspector/console/console-revoke-error.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-revoke-error.html b/third_party/WebKit/LayoutTests/inspector/console/console-revoke-error.html
index a212edd470a7ef65ba43888dfb6681aa0bed8885..b437f7fa4686981c6dcbb5509c99fa40c1f098be 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-revoke-error.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-revoke-error.html
@@ -21,7 +21,7 @@ function handleSomeRejections()
function test()
{
var messageAddedListener = InspectorTest.wrapListener(messageAdded);
- InspectorTest.consoleModel.addEventListener(SDK.ConsoleModel.Events.MessageAdded, messageAddedListener);
+ InspectorTest.consoleModel.addEventListener(ConsoleModel.ConsoleModel.Events.MessageAdded, messageAddedListener);
InspectorTest.addResult("Creating promise");
InspectorTest.evaluateInPageWithTimeout("createPromises()");
@@ -34,11 +34,11 @@ function test()
return;
messageNumber = 0;
- InspectorTest.consoleModel.removeEventListener(SDK.ConsoleModel.Events.MessageAdded, messageAddedListener);
+ InspectorTest.consoleModel.removeEventListener(ConsoleModel.ConsoleModel.Events.MessageAdded, messageAddedListener);
InspectorTest.addResult("");
// Process array as a batch.
- InspectorTest.consoleModel.addEventListener(SDK.ConsoleModel.Events.MessageUpdated, InspectorTest.wrapListener(messageUpdated));
+ InspectorTest.consoleModel.addEventListener(ConsoleModel.ConsoleModel.Events.MessageUpdated, InspectorTest.wrapListener(messageUpdated));
InspectorTest.dumpConsoleCounters();
InspectorTest.addResult("");
InspectorTest.addResult("Handling promise");

Powered by Google App Engine
This is Rietveld 408576698