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

Unified Diff: chrome/test/data/extensions/api_test/debugger_extension/background.js

Issue 12377047: Add chrome.debugger.getTargets method to discover available debug targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@targets
Patch Set: Removed flaky tests Created 7 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
« no previous file with comments | « chrome/test/data/extensions/api_test/debugger/background.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/debugger_extension/background.js
diff --git a/chrome/test/data/extensions/api_test/debugger_extension/background.js b/chrome/test/data/extensions/api_test/debugger_extension/background.js
index 63101a85e3e860abd3fb67aab28d6c6f11c05d46..d1565863bea3a902062edb80b867a6ed760f8842 100644
--- a/chrome/test/data/extensions/api_test/debugger_extension/background.js
+++ b/chrome/test/data/extensions/api_test/debugger_extension/background.js
@@ -19,14 +19,14 @@ chrome.test.runTests([
function attachToMissing() {
var missingDebuggee = {extensionId: "foo"};
chrome.debugger.attach(missingDebuggee, protocolVersion,
- fail("No extension with given id " +
+ fail("No background page with given id " +
missingDebuggee.extensionId + "."));
},
function attachAgain() {
chrome.debugger.attach(debuggee, protocolVersion,
- fail("Another debugger is already attached to the extension with id: " +
- debuggee.extensionId + "."));
+ fail("Another debugger is already attached " +
+ "to the background page with id: " + debuggee.extensionId + "."));
},
function detach() {
@@ -35,7 +35,7 @@ chrome.test.runTests([
function detachAgain() {
chrome.debugger.detach(debuggee,
- fail("Debugger is not attached to the extension with id: " +
+ fail("Debugger is not attached to the background page with id: " +
debuggee.extensionId + "."));
}
]);
« no previous file with comments | « chrome/test/data/extensions/api_test/debugger/background.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698