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

Unified Diff: remoting/webapp/crd/js/client_plugin_impl.js

Issue 1033913003: Touch Events capability negotiation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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: remoting/webapp/crd/js/client_plugin_impl.js
diff --git a/remoting/webapp/crd/js/client_plugin_impl.js b/remoting/webapp/crd/js/client_plugin_impl.js
index 3560e7b8df1070e6de590a79716a59e0322e7248..2a20eb18025d25cdef5df5aba2614b428c6283fd 100644
--- a/remoting/webapp/crd/js/client_plugin_impl.js
+++ b/remoting/webapp/crd/js/client_plugin_impl.js
@@ -635,6 +635,16 @@ remoting.ClientPluginImpl.prototype.sendClipboardItem =
};
/**
+ * Notifies the plugin that touch events should be handled by the plugin.
+ *
+ * @return {void} Nothing.
+ */
+remoting.ClientPluginImpl.prototype.enableTouchEvents = function() {
+ this.plugin_.postMessage(
+ JSON.stringify({method: 'enableTouchEvents', data: {}}));
Wez 2015/03/30 17:10:07 This makes enabling touch events a one-way functio
Rintaro Kuroiwa 2015/04/08 03:27:43 Done.
+};
+
+/**
* Notifies the host that the client has the specified size and pixel density.
*
* @param {number} width The available client width in DIPs.

Powered by Google App Engine
This is Rietveld 408576698