summaryrefslogtreecommitdiffstats
path: root/remoting/webapp/remoting.js
Commit message (Collapse)AuthorAgeFilesLines
...
* [Chromoting] Move the onBlur handler from window to the plugin element.simonmorris@chromium.org2012-03-281-11/+0
| | | | | | | | This is a follow-up to codereview.chromium.org/9773033 . Review URL: https://chromiumcodereview.appspot.com/9875031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@129486 0039d316-1c4b-4281-b951-d872f2087c98
* Address remaining nits for r129104.sergeyu@chromium.org2012-03-281-1/+1
| | | | | | Review URL: http://codereview.chromium.org/9860045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@129371 0039d316-1c4b-4281-b951-d872f2087c98
* [Chromoting] Only the plugin element listens for focus, not the whole document.simonmorris@chromium.org2012-03-271-12/+3
| | | | | | | | | | | This also re-enables clipboard handling at the webapp, reverting the temporary codereview.chromium.org/9845041 . BUG=119838 Review URL: https://chromiumcodereview.appspot.com/9773033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@129270 0039d316-1c4b-4281-b951-d872f2087c98
* Implement exponential backoff for failed Me2Me authentication attemptssergeyu@chromium.org2012-03-271-0/+1
| | | | | | | | BUG=113273 Review URL: https://chromiumcodereview.appspot.com/9836062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@129104 0039d316-1c4b-4281-b951-d872f2087c98
* [Chromoting] Disable clipboard handling until crbug.com/119838 is fixed.simonmorris@chromium.org2012-03-231-2/+3
| | | | | | | | BUG=119838 Review URL: https://chromiumcodereview.appspot.com/9845041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@128598 0039d316-1c4b-4281-b951-d872f2087c98
* [Chromoting] Adds a button that cancels PIN entry.simonmorris@chromium.org2012-03-201-1/+1
| | | | | | | | BUG=116813 Review URL: https://chromiumcodereview.appspot.com/9731014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127705 0039d316-1c4b-4281-b951-d872f2087c98
* [Chromoting] Let the webapp detect new clipboard text items when it gets focus.simonmorris@chromium.org2012-03-151-0/+26
| | | | | | | | | BUG=117473 Review URL: http://codereview.chromium.org/9703003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126974 0039d316-1c4b-4281-b951-d872f2087c98
* Hide daemon UI initially.jamiewalch@google.com2012-03-121-7/+14
| | | | | | | | | BUG=117555 TEST=Manual Review URL: https://chromiumcodereview.appspot.com/9664013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126208 0039d316-1c4b-4281-b951-d872f2087c98
* Use classList in host_table_entryjamiewalch@chromium.org2012-03-061-1/+14
| | | | | | | | | | BUG=None TEST=Manual Review URL: http://codereview.chromium.org/9610003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125087 0039d316-1c4b-4281-b951-d872f2087c98
* [Chromoting] Get extension name directly from translation.garykac@chromium.org2012-03-061-1/+2
| | | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/9572024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125051 0039d316-1c4b-4281-b951-d872f2087c98
* [Chromoting] Log extension name and version number on startup.garykac@chromium.org2012-03-021-0/+18
| | | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/9564029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124666 0039d316-1c4b-4281-b951-d872f2087c98
* Display correct error message when the client fails to establish P2P connection.sergeyu@chromium.org2012-03-021-0/+1
| | | | | | | | BUG=110844 Review URL: https://chromiumcodereview.appspot.com/9564025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124573 0039d316-1c4b-4281-b951-d872f2087c98
* Change Chromoting logging to use console.log instead of remoting.debug.log.garykac@chromium.org2012-02-281-3/+1
| | | | | | | | | BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/9447081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123849 0039d316-1c4b-4281-b951-d872f2087c98
* Chromoting: remove debug log div and direct logging to console.loggarykac@chromium.org2012-02-251-2/+4
| | | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/9454030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123623 0039d316-1c4b-4281-b951-d872f2087c98
* Make the host UI appear as an overlay on the home screen.jamiewalch@google.com2012-02-241-15/+0
| | | | | | | | | BUG=115350 TEST=Manual Review URL: https://chromiumcodereview.appspot.com/9458001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123386 0039d316-1c4b-4281-b951-d872f2087c98
* Make daemon state orthogonal to UI mode.jamiewalch@google.com2012-02-231-1/+2
| | | | | | | | | | | | | | Having the daemon state, which affects the home page, mixed in with the general UI modal state is going to cause problems when the home page is visible behind modal dialogs (it will essentially mean to AppModes for each dialog). Better to have it as an orthogonal state. BUG=115350 TEST=Manual Review URL: https://chromiumcodereview.appspot.com/9372128 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123153 0039d316-1c4b-4281-b951-d872f2087c98
* Added support for stop/start and set PIN.jamiewalch@google.com2012-02-131-2/+6
| | | | | | | | | | | This CL adds basic support to the web-app for starting and stopping the daemon process and for changing the PIN. It's not pretty and there's a lot of missing functionality, but it's enough to start making progress on a per-platform basis. BUG=None TEST=Manual Review URL: https://chromiumcodereview.appspot.com/9372047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121754 0039d316-1c4b-4281-b951-d872f2087c98
* Rename webapp_it2me to remoting_webapp and move it from webapp/me2mom to webapp/sergeyu@chromium.org2012-01-111-0/+186
The remoting webapp is not it2me specific anymore. Renaming stuff and moving it to avoid confusion, particularly for the newcomers. Review URL: http://codereview.chromium.org/9148043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117322 0039d316-1c4b-4281-b951-d872f2087c98