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

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

Issue 11413131: Enable Pointer Lock for packaged apps using ShellWindow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge lkgr Created 8 years 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 Access all text spoken using synthesized speech 379 Access all text spoken using synthesized speech
380 </td> 380 </td>
381 <td> 381 <td>
382 "ttsEngine" permission 382 "ttsEngine" permission
383 </td> 383 </td>
384 <td> 384 <td>
385 The "ttsEngine" permission is required by the 385 The "ttsEngine" permission is required by the
386 <a href="ttsEngine.html"><code>chrome.ttsEngine</code></a> module. 386 <a href="ttsEngine.html"><code>chrome.ttsEngine</code></a> module.
387 </td> 387 </td>
388 </tr> 388 </tr>
389
390 <tr>
391 <td style="font-weight:bold">
392 <!-- IDS_EXTENSION_PROMPT_WARNING_POINTER_LOCK-->
393 Disable the mouse cursor
394 </td>
395 <td>
396 "pointerLock" permission
397 </td>
398 <td>
399 The "pointerLock" permission is required to use
400 <a href="http://www.w3.org/TR/pointerlock/">Pointer Lock</a> via calls to
401 <code>webkitRequestPointerLock</code></a> or Pepper's
402 <a href="https://developers.google.com/native-client/peppercpp/classpp_1_1_m ouse_lock">
403 Mouse Lock API</a>.
404 </td>
405 </tr>
389 </table> 406 </table>
390 </p> 407 </p>
391 408
392 409
393 <h2 id="nowarning"> Permissions that don't cause warnings </h2> 410 <h2 id="nowarning"> Permissions that don't cause warnings </h2>
394 411
395 <p> 412 <p>
396 The following permissions don't result in a warning: 413 The following permissions don't result in a warning:
397 </p> 414 </p>
398 415
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 by clicking the <b>chrome://extensions</b> page's 456 by clicking the <b>chrome://extensions</b> page's
440 <b>Update extensions now</b> button. 457 <b>Update extensions now</b> button.
441 </p> 458 </p>
442 459
443 <h2 id="api">API</h2> 460 <h2 id="api">API</h2>
444 461
445 <p> 462 <p>
446 You can get a list of permission warnings for any manifest with 463 You can get a list of permission warnings for any manifest with
447 <a href="management.html#method-getPermissionWarnings">chrome.management.getPerm issionWarnings()</a>. 464 <a href="management.html#method-getPermissionWarnings">chrome.management.getPerm issionWarnings()</a>.
448 </p> 465 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698