summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions
diff options
context:
space:
mode:
authorfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-18 21:30:32 +0000
committerfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-18 21:30:32 +0000
commitdf3bdcf1d352aeaf38218da358d3dbf387c92cde (patch)
treebe6580763293feca29d7ac0ab524cfef86034190 /chrome/common/extensions
parent96e284571293e7706dc95acf919f2be8ac621127 (diff)
downloadchromium_src-df3bdcf1d352aeaf38218da358d3dbf387c92cde.zip
chromium_src-df3bdcf1d352aeaf38218da358d3dbf387c92cde.tar.gz
chromium_src-df3bdcf1d352aeaf38218da358d3dbf387c92cde.tar.bz2
Minor extension infobar changes.
Addressing review comments that were submitted after I checked in. BUG=26463 TEST=None Review URL: http://codereview.chromium.org/1097002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41990 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions')
-rwxr-xr-xchrome/common/extensions/api/extension_api.json4
-rw-r--r--chrome/common/extensions/docs/experimental.html2
-rw-r--r--chrome/common/extensions/docs/experimental.infobars.html (renamed from chrome/common/extensions/docs/experimental.infoBar.html)12
-rw-r--r--chrome/common/extensions/docs/manifest.html6
-rw-r--r--chrome/common/extensions/docs/static/manifest.html6
5 files changed, 19 insertions, 11 deletions
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json
index 2175e96..8925e81 100755
--- a/chrome/common/extensions/api/extension_api.json
+++ b/chrome/common/extensions/api/extension_api.json
@@ -1392,13 +1392,13 @@
]
},
{
- "namespace": "experimental.infoBar",
+ "namespace": "experimental.infobars",
"types": [],
"functions": [
{
"name": "show",
"type": "function",
- "description": "Shows an infobar in the specified tab.",
+ "description": "Shows an infobar in the specified tab. The infobar will be closed automatically when the tab navigates. Use window.close() to close the infobar before then.",
"parameters": [
{
"name": "details",
diff --git a/chrome/common/extensions/docs/experimental.html b/chrome/common/extensions/docs/experimental.html
index 1b03ac4..566bfe9 100644
--- a/chrome/common/extensions/docs/experimental.html
+++ b/chrome/common/extensions/docs/experimental.html
@@ -256,7 +256,7 @@ on the following experimental APIs:
</p>
<ul>
- <li><a href="experimental.clipboard.html" js="">experimental.clipboard</a></li><li><a href="experimental.history.html" js="">experimental.history</a></li><li><a href="experimental.infoBar.html" js="">experimental.infoBar</a></li><li><a href="experimental.processes.html" js="">experimental.processes</a></li>
+ <li><a href="experimental.clipboard.html" js="">experimental.clipboard</a></li><li><a href="experimental.history.html" js="">experimental.history</a></li><li><a href="experimental.infobars.html" js="">experimental.infobars</a></li><li><a href="experimental.processes.html" js="">experimental.processes</a></li>
</ul>
<p class="caution">
diff --git a/chrome/common/extensions/docs/experimental.infoBar.html b/chrome/common/extensions/docs/experimental.infobars.html
index 87c1861..1b414db 100644
--- a/chrome/common/extensions/docs/experimental.infoBar.html
+++ b/chrome/common/extensions/docs/experimental.infobars.html
@@ -15,7 +15,7 @@
</script>
<script type="text/javascript" src="js/api_page_generator.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
- <title>chrome.experimental.infoBar - Google Chrome Extensions - Google Code</title></head><body> <div id="gc-container" class="labs">
+ <title>chrome.experimental.infobars - Google Chrome Extensions - Google Code</title></head><body> <div id="gc-container" class="labs">
<div id="devModeWarning">
You are viewing extension docs in chrome via the 'file:' scheme: are you expecting to see local changes when you refresh? You'll need run chrome with --allow-file-access-from-files.
</div>
@@ -192,7 +192,7 @@
<div class="g-unit" id="gc-pagecontent">
<div id="pageTitle">
- <h1 class="page_title">chrome.experimental.infoBar</h1>
+ <h1 class="page_title">chrome.experimental.infobars</h1>
</div>
<!-- TABLE OF CONTENTS -->
<div id="toc">
@@ -207,7 +207,7 @@
</ol>
</li>
<li>
- <a href="#apiReference">API reference: chrome.experimental.infoBar</a>
+ <a href="#apiReference">API reference: chrome.experimental.infobars</a>
<ol>
<li style="display: none; ">
<a href="#properties">Properties</a>
@@ -253,7 +253,7 @@
<!-- API PAGE -->
<div class="apiPage">
<a name="apiReference"></a>
- <h2>API reference: chrome.experimental.infoBar</h2>
+ <h2>API reference: chrome.experimental.infobars</h2>
<!-- PROPERTIES -->
<div class="apiGroup" style="display: none; ">
@@ -285,13 +285,13 @@
<div class="summary"><span style="display: none; ">void</span>
<!-- Note: intentionally longer 80 columns -->
- <span>chrome.experimental.infoBar.show</span>(<span class="null"><span style="display: none; ">, </span><span>object</span>
+ <span>chrome.experimental.infobars.show</span>(<span class="null"><span style="display: none; ">, </span><span>object</span>
<var><span>details</span></var></span><span class="null"><span>, </span><span>function</span>
<var><span>callback</span></var></span>)</div>
<div class="description">
<p class="todo" style="display: none; ">Undocumented.</p>
- <p>Shows an infobar in the specified tab.</p>
+ <p>Shows an infobar in the specified tab. The infobar will be closed automatically when the tab navigates. Use window.close() to close the infobar before then.</p>
<!-- PARAMETERS -->
<h4>Parameters</h4>
diff --git a/chrome/common/extensions/docs/manifest.html b/chrome/common/extensions/docs/manifest.html
index e99a05f..f30fea7 100644
--- a/chrome/common/extensions/docs/manifest.html
+++ b/chrome/common/extensions/docs/manifest.html
@@ -357,11 +357,15 @@ including BMP, GIF, ICO, and JPEG.
Here's an example of specifying the icons:
</p>
-<pre>"icons": { "48": "icon48.png",
+<pre>"icons": { "16": "icon16.png",
+ "48": "icon48.png",
"128": "icon128.png" },
</pre>
<p>
+If you use infobars, you should also specify
+a 16x16-pixel logo, for displaying within the
+infobar.
If you submit your extension to the
<a href="https://chrome.google.com/extensions">gallery</a>,
you'll need to upload additional images,
diff --git a/chrome/common/extensions/docs/static/manifest.html b/chrome/common/extensions/docs/static/manifest.html
index ff789cd..2b6dc86 100644
--- a/chrome/common/extensions/docs/static/manifest.html
+++ b/chrome/common/extensions/docs/static/manifest.html
@@ -90,11 +90,15 @@ Here's an example of specifying the icons:
</p>
<pre>
-"icons": { "48": "icon48.png",
+"icons": { "16": "icon16.png",
+ "48": "icon48.png",
"128": "icon128.png" },
</pre>
<p>
+If you use infobars, you should also specify
+a 16x16-pixel logo, for displaying within the
+infobar.
If you submit your extension to the
<a href="https://chrome.google.com/extensions">gallery</a>,
you'll need to upload additional images,