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

Side by Side Diff: chrome/common/extensions/docs/templates/articles/permission_warnings.html

Issue 12205002: Packaged apps manifest requires 'fullscreen' permission for HTML5 api. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Prune back to just apps 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <h1>Permission Warnings</h1> 1 <h1>Permission Warnings</h1>
2 2
3 3
4 <!-- 4 <!--
5 NOTE: When this doc is updated, the online help should also be updated: 5 NOTE: When this doc is updated, the online help should also be updated:
6 http://www.google.com/support/chrome_webstore/bin/answer.py?hl=en&answer=186213 6 http://www.google.com/support/chrome_webstore/bin/answer.py?hl=en&answer=186213
7 7
8 We should periodically look at 8 We should periodically look at
9 http://src.chromium.org/viewvc/chrome/trunk/src/chrome/app/generated_resources.g rd?view=markup 9 http://src.chromium.org/viewvc/chrome/trunk/src/chrome/app/generated_resources.g rd?view=markup
10 to make sure that we're covering all messages. Search for 10 to make sure that we're covering all messages. Search for
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 </p> 397 </p>
398 398
399 <ul> 399 <ul>
400 <li>"activeTab"</li> 400 <li>"activeTab"</li>
401 <li>"browsingData"</li> 401 <li>"browsingData"</li>
402 <li>"chrome://favicon/"</li> 402 <li>"chrome://favicon/"</li>
403 <li>"clipboardWrite"</li> 403 <li>"clipboardWrite"</li>
404 <li>"contextMenus"</li> 404 <li>"contextMenus"</li>
405 <li>"cookies"</li> 405 <li>"cookies"</li>
406 <li>"experimental"</li> 406 <li>"experimental"</li>
407 {{?is_apps}}
408 <li>"fullscreen"</li>
409 {{/is_apps}}
407 <li>"idle"</li> 410 <li>"idle"</li>
408 <li>"notifications"</li> 411 <li>"notifications"</li>
412 {{?is_apps}}
413 <li>"pointerLock"</li>
414 {{/is_apps}}
409 <li>"storage"</li> 415 <li>"storage"</li>
410 <li>"unlimitedStorage"</li> 416 <li>"unlimitedStorage"</li>
411 <li>"webRequest"</li> 417 <li>"webRequest"</li>
412 <li>"webRequestBlocking"</li> 418 <li>"webRequestBlocking"</li>
413 </ul> 419 </ul>
414 420
415 <h2 id="test"> Testing permission warnings </h2> 421 <h2 id="test"> Testing permission warnings </h2>
416 422
417 <p> 423 <p>
418 If you'd like to see exactly which warnings your users will get, 424 If you'd like to see exactly which warnings your users will get,
(...skipping 20 matching lines...) Expand all
439 by clicking the <b>chrome://extensions</b> page's 445 by clicking the <b>chrome://extensions</b> page's
440 <b>Update extensions now</b> button. 446 <b>Update extensions now</b> button.
441 </p> 447 </p>
442 448
443 <h2 id="api">API</h2> 449 <h2 id="api">API</h2>
444 450
445 <p> 451 <p>
446 You can get a list of permission warnings for any manifest with 452 You can get a list of permission warnings for any manifest with
447 $ref:management.getPermissionWarningsByManifest. 453 $ref:management.getPermissionWarningsByManifest.
448 </p> 454 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698