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

Unified Diff: chrome/test/data/extensions/api_test/uncaught_exception_logging/manifest.json

Issue 678393002: Send extension console messages to the right WebFrame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add the missing copyright notice. Created 6 years, 1 month 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/test/data/extensions/api_test/uncaught_exception_logging/manifest.json
diff --git a/chrome/test/data/extensions/api_test/uncaught_exception_logging/manifest.json b/chrome/test/data/extensions/api_test/uncaught_exception_logging/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..785a5f69504f58c1136361895a0659577e5f81da
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/uncaught_exception_logging/manifest.json
@@ -0,0 +1,16 @@
+{
+ "manifest_version": 2,
+ "name": "Error logging test",
+ "version": "1.0",
+ "description": "Throws uncaught exception in chrome.tabs.query callback.",
+ "background": {
+ "scripts": [
+ "test.js"
+ ]
+ },
+ "permissions": [
+ "bookmarks",
+ "debugger",
+ "<all_urls>"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698