diff options
author | weitaosu@chromium.org <weitaosu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-30 23:42:28 +0000 |
---|---|---|
committer | weitaosu@chromium.org <weitaosu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-30 23:42:28 +0000 |
commit | e29ecd7e40dd3d3df7bdd4059e85150f1b8608bc (patch) | |
tree | 47d182a1e4729d7557fcf4dcb178b35f01546a7f /remoting/webapp/main.html | |
parent | ff9c9eb00afc1325bbb08354b23fea2904a708de (diff) | |
download | chromium_src-e29ecd7e40dd3d3df7bdd4059e85150f1b8608bc.zip chromium_src-e29ecd7e40dd3d3df7bdd4059e85150f1b8608bc.tar.gz chromium_src-e29ecd7e40dd3d3df7bdd4059e85150f1b8608bc.tar.bz2 |
It2me native messaging host: webapp implementation.
The webapp implementation of the it2me native messaging is based on the me2me couterpart. But I got rid of the per-message onDone/onError callbacks because unlike me2me, all requests to the it2me host are asynchronous: direct responses to all requests are meaningless. Only the asynchronous callbacks on host state change and nat policy update need to be processed.
I verified that this is fully functional on Linux. Windows and Mac verification haven't been done and are planned after the linux work is completed.
BUG=309844
Review URL: https://codereview.chromium.org/138503009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248072 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/webapp/main.html')
-rw-r--r-- | remoting/webapp/main.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/remoting/webapp/main.html b/remoting/webapp/main.html index eedde24..4d2bb42 100644 --- a/remoting/webapp/main.html +++ b/remoting/webapp/main.html @@ -26,6 +26,8 @@ found in the LICENSE file. <script src="host.js"></script> <script src="host_controller.js"></script> <script src="host_dispatcher.js"></script> + <script src="host_it2me_dispatcher.js"></script> + <script src="host_it2me_native_messaging.js"></script> <script src="host_list.js"></script> <script src="host_native_messaging.js"></script> <script src="host_screen.js"></script> |