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

Unified Diff: chrome/common/extensions/docs/templates/intros/infobars.html

Issue 20081002: Remove experimental permission from infobars API and moving it to dev channel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reverted the app.yaml version change Created 7 years, 5 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/common/extensions/docs/templates/intros/infobars.html
diff --git a/chrome/common/extensions/docs/templates/intros/experimental_infobars.html b/chrome/common/extensions/docs/templates/intros/infobars.html
similarity index 84%
rename from chrome/common/extensions/docs/templates/intros/experimental_infobars.html
rename to chrome/common/extensions/docs/templates/intros/infobars.html
index d3d0476f67f50506ae785920edd46fd03d629272..e3bba7d1ffd3adfa2eaaf1923d66c2c4809de81c 100644
--- a/chrome/common/extensions/docs/templates/intros/experimental_infobars.html
+++ b/chrome/common/extensions/docs/templates/intros/infobars.html
@@ -28,9 +28,8 @@ they can
<h2 id="manifest">Manifest</h2>
<p>
-The infobars API is currently
-experimental, so you must declare the "experimental"
-permission to use it. Also, you should specify
+The infobars API is avaiable under "infobars"
+permission and dev channel only. Also, you should specify
a 16x16-pixel icon for display next to your infobar.
For example:
</p>
@@ -38,11 +37,11 @@ For example:
<pre>{
"name": "Andy's infobar extension",
"version": "1.0",
- <b>"permissions": ["experimental"],</b>
+ <b>"permissions": ["infobars"],</b>
<b>"icons": {</b>
<b>"16": "16.png"</b>
<b>},</b>
"background": {
"scripts": ["background.js"]
}
-}</pre>
+}</pre>

Powered by Google App Engine
This is Rietveld 408576698