diff options
author | skerner@chromium.org <skerner@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-28 19:13:57 +0000 |
---|---|---|
committer | skerner@chromium.org <skerner@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-28 19:13:57 +0000 |
commit | 432c01afc9975f4a4f251eed1268e4a79e301e66 (patch) | |
tree | 0d643f8d43b7b3089c5fba590990c50a6d56c7c2 /chrome/common/extensions/docs/experimental.html | |
parent | 5af52c96a8e35e256fd4e1d22205b2a7de7278c9 (diff) | |
download | chromium_src-432c01afc9975f4a4f251eed1268e4a79e301e66.zip chromium_src-432c01afc9975f4a4f251eed1268e4a79e301e66.tar.gz chromium_src-432c01afc9975f4a4f251eed1268e4a79e301e66.tar.bz2 |
Make the extension API docs point out the minimum version that supports an API call.
BUG=41127
TEST=none
Review URL: http://codereview.chromium.org/2812023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51013 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/docs/experimental.html')
-rw-r--r-- | chrome/common/extensions/docs/experimental.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/chrome/common/extensions/docs/experimental.html b/chrome/common/extensions/docs/experimental.html index f4cc686..d2689fd 100644 --- a/chrome/common/extensions/docs/experimental.html +++ b/chrome/common/extensions/docs/experimental.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> <!-- OBJECT PROPERTIES --> <dd> @@ -419,6 +428,13 @@ For information on the standard APIs that extensions can use, see </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> |