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

Unified Diff: chrome/common/extensions/docs/static/experimental.downloads.html

Issue 9617010: Move chrome.downloads out of experimental to dev (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 8 years, 6 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/static/experimental.downloads.html
diff --git a/chrome/common/extensions/docs/static/experimental.downloads.html b/chrome/common/extensions/docs/static/experimental.downloads.html
deleted file mode 100644
index 27cf9527d53cd400ab571a05bdd7f32f727aef38..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/docs/static/experimental.downloads.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<p>The downloads API allows you to programmatically initiate downloads. In the
-future, you will also be able to monitor and manipulate downloads.</p>
-
-<h2 id="manifest">Manifest</h2>
-
-<p>The downloads API is currently experimental, so you must declare the
-"experimental" permission to use it. Also, you must specify the hostname of any
-URLs to be downloaded. For example:</p>
-
-<pre>{
- "name": "Download Selected Links",
- "description": "Select links on a page and download them.",
- "version": "0.1",
- "permissions": [
- "experimental", "http://*/*", "https://*/*"
- ]
-}</pre>
-
-<p>If the URL’s hostname is not specified in the permissions, then
-<a href='extension.html#property-lastError'>chrome.extension.lastError</a>
-will indicate that the extension does not have permission to access that
-hostname. <a href="#properties">downloads.ERROR_*</a> are some of the errors
-that may be returned.</p>
-
-<h2 id="examples"> Examples </h2>
-
-<p>You can find simple examples of using the downloads module in the
-<a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/api/downloads/">examples/api/downloads</a>
-directory. For other examples and for help in viewing the source code, see
-<a href="samples.html">Samples</a>.</p>
-
« no previous file with comments | « chrome/common/extensions/docs/static/downloads.html ('k') | chrome/common/extensions/extension_permission_set.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698