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

Unified Diff: LayoutTests/inspector/sources/debugger/file-system-project-mapping.html

Issue 313603003: Devtools: get rid of ProjectWillReset event, introduce ProjectRemoved instead of it (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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: LayoutTests/inspector/sources/debugger/file-system-project-mapping.html
diff --git a/LayoutTests/inspector/sources/debugger/file-system-project-mapping.html b/LayoutTests/inspector/sources/debugger/file-system-project-mapping.html
index 55785ef1ec78af45df74730ca01981e30c25b66e..19b240eee29766f9733bc7c8a8e27d7fed05f18d 100644
--- a/LayoutTests/inspector/sources/debugger/file-system-project-mapping.html
+++ b/LayoutTests/inspector/sources/debugger/file-system-project-mapping.html
@@ -330,12 +330,12 @@ function test()
dumpWorkspaceUISourceCodes();
InspectorTest.addResult("Removing project:");
var project = InspectorTest.testWorkspace.uiSourceCodes()[0].project();
- InspectorTest.testWorkspace.addEventListener(WebInspector.Workspace.Events.ProjectWillReset, projectWillReset);
+ InspectorTest.testWorkspace.addEventListener(WebInspector.Workspace.Events.ProjectRemoved, projectRemoved);
project.remove();
- function projectWillReset()
+ function projectRemoved()
{
- InspectorTest.addResult("Received project will reset event.");
+ InspectorTest.addResult("Received project removed event.");
next();
}
},

Powered by Google App Engine
This is Rietveld 408576698