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

Unified Diff: LayoutTests/http/tests/inspector/resources/extension-main.js

Issue 971703002: DevTools: fix co-existance of multiple DevTools extensions (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
« no previous file with comments | « no previous file | LayoutTests/inspector/extensions/multiple-extensions.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/inspector/resources/extension-main.js
diff --git a/LayoutTests/http/tests/inspector/resources/extension-main.js b/LayoutTests/http/tests/inspector/resources/extension-main.js
index 13e72d9b5ccfbd2716238359dce5de73e57b5beb..e7196f492cc4143823f6112ad197cb922e5014c7 100644
--- a/LayoutTests/http/tests/inspector/resources/extension-main.js
+++ b/LayoutTests/http/tests/inspector/resources/extension-main.js
@@ -81,13 +81,13 @@ function runTests()
tests.push(symbol);
}
tests = tests.sort();
- var testChain = onTestsDone;
+ var testChain = extension_onTestsDone;
for (var test = tests.pop(); test; test = tests.pop())
testChain = bind(runTest, this, bind(this[test], this, testChain), test);
testChain();
}
-function onTestsDone()
+function extension_onTestsDone()
{
output("All tests done.");
evaluateOnFrontend("InspectorTest.completeTest();");
« no previous file with comments | « no previous file | LayoutTests/inspector/extensions/multiple-extensions.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698