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

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

Issue 12213076: Media Galleries: Disable write support. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 10 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/mediaGalleries.html
===================================================================
--- chrome/common/extensions/docs/templates/intros/mediaGalleries.html (revision 181366)
+++ chrome/common/extensions/docs/templates/intros/mediaGalleries.html (working copy)
@@ -11,13 +11,12 @@
</tr>
<tr>
<td><strong>Availability:</strong></td>
- <td>Google Chrome 23 (read permission)<br>
- Google Chrome 26 (write permission)</td>
+ <td>Google Chrome 23 (read permission)</td>
</tr>
<tr>
<td><strong>Permissions:</strong></td>
- <td><code>"mediaGalleries": ["accessType"]</code>,
- <code>"mediaGalleries": ["accessType", "allAutoDetected"]</code><br>
+ <td><code>"mediaGalleries": ["read"]</code>,
+ <code>"mediaGalleries": ["read", "allAutoDetected"]</code><br>
See <a href="#manifest">Manifest</a> below
for more information.</td>
</tr>
@@ -66,16 +65,11 @@
...
}</pre>
-<p>The above permission will trigger an install time permission prompt
+<p>This permission will trigger an install time permission prompt
and let the extension read from all auto-detected media galleries on the
user's computer. The user may add or remove galleries using the
media gallery management dialog, after which the extension will be able
to read all the media files from galleries that the user has selected.</p>
-<p>Another possible access type is "write", which can be put in place of
-"read". Specifying "write" allows read and write access to the accessible
-media galleries.
-</p>
-
-<p>Currently "read" and "write" access types are supported by
-this API. Add-file access with be implemented soon.</p>
+<p>Currently "read" is the only access type supported by
+this API. Read-write and add-file access with be implemented soon.</p>

Powered by Google App Engine
This is Rietveld 408576698