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

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

Issue 25305002: Implement initial chrome.browserAction.openPopup API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move to interactive_ui_test Created 7 years, 2 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/test/data/extensions/api_test/browser_action/open_popup/manifest.json
diff --git a/chrome/test/data/extensions/api_test/browser_action/open_popup/manifest.json b/chrome/test/data/extensions/api_test/browser_action/open_popup/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..b2d3971087928002dd2119c4bb2fa1e371e2d89c
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/browser_action/open_popup/manifest.json
@@ -0,0 +1,13 @@
+{
+ "name": "OpenPopup Test",
+ "version": "1",
+ "manifest_version": 2,
+ "description": "Apitest for chrome.browserAction.openPopup",
+ "incognito": "split",
+ "browser_action": {
+ "default_popup": "popup.html"
+ },
+ "permissions": [
+ "activeTab" // For testing that this API does not grant tab permissions.
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698