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

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

Issue 12304021: Allow chrome.debugger API to attach to extension background pages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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
Index: chrome/browser/extensions/api/debugger/debugger_api_constants.h
diff --git a/chrome/browser/extensions/api/debugger/debugger_api_constants.h b/chrome/browser/extensions/api/debugger/debugger_api_constants.h
index 67e605e9ef494c1393d9f1b9f881fef2a3206565..8178fdd521d8e3baec680d1eb85e72ef02b93414 100644
--- a/chrome/browser/extensions/api/debugger/debugger_api_constants.h
+++ b/chrome/browser/extensions/api/debugger/debugger_api_constants.h
@@ -16,10 +16,15 @@ extern const char kOnDetach[];
// Errors.
extern const char kAlreadyAttachedError[];
extern const char kAttachToWebUIError[];
-extern const char kNoTabError[];
+extern const char kNoTargetError[];
+extern const char kInvalidTargetError[];
extern const char kNotAttachedError[];
extern const char kProtocolVersionNotSupportedError[];
+// Target types.
+extern const char kTabTargetType[];
+extern const char kExtensionTargetType[];
+
} // namespace debugger_api_constants
#endif // CHROME_BROWSER_EXTENSIONS_API_DEBUGGER_DEBUGGER_API_CONSTANTS_H_

Powered by Google App Engine
This is Rietveld 408576698