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

Unified Diff: chrome/browser/extensions/api/debugger/debugger_api_constants.cc

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
Index: chrome/browser/extensions/api/debugger/debugger_api_constants.cc
diff --git a/chrome/browser/extensions/api/debugger/debugger_api_constants.cc b/chrome/browser/extensions/api/debugger/debugger_api_constants.cc
index 40ae779cda6b9c9be84cce30856edc4ccbb12250..a9f5c6eb0c8f00d4729c4805649f4bd05e5c94f8 100644
--- a/chrome/browser/extensions/api/debugger/debugger_api_constants.cc
+++ b/chrome/browser/extensions/api/debugger/debugger_api_constants.cc
@@ -21,9 +21,10 @@ const char kNotAttachedError[] =
const char kProtocolVersionNotSupportedError[] =
"Requested protocol version is not supported: *.";
const char kSilentDebuggingRequired[] =
- "Cannot attach to an extension unless '*' flag is enabled.";
+ "Cannot attach to this target unless '*' flag is enabled.";
const char kTabTargetType[] = "tab";
-const char kExtensionTargetType[] = "extension";
+const char kBackgroundPageTargetType[] = "background page";
+const char kOpaqueTargetType[] = "target";
} // namespace debugger_api_constants
« no previous file with comments | « chrome/browser/extensions/api/debugger/debugger_api_constants.h ('k') | chrome/common/extensions/api/debugger.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698