Roll src/third_party/WebKit 3529d49:06e8485 (svn 202554:202555)
[chromium-blink-merge.git] / remoting / webapp / base / js / client_plugin.js
blobcb6b070db782422dc4436566d0f127166bdea519
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 /**
6  * @fileoverview
7  * Interface abstracting the ClientPlugin functionality.
8  */
10 'use strict';
12 /** @suppress {duplicate} */
13 var remoting = remoting || {};
15 /**
16  * @interface
17  * @extends {base.Disposable}
18  */
19 remoting.ClientPlugin = function() {};
21 /**
22  * @return {remoting.HostDesktop}
23  */
24 remoting.ClientPlugin.prototype.hostDesktop = function() {};
26 /**
27  * @return {remoting.ProtocolExtensionManager}
28  */
29 remoting.ClientPlugin.prototype.extensions = function() {};
31 /**
32  * @return {HTMLElement} The DOM element representing the remote session.
33  */
34 remoting.ClientPlugin.prototype.element = function() {};
36 /**
37  * @param {function(boolean):void} onDone Completion callback.
38  */
39 remoting.ClientPlugin.prototype.initialize = function(onDone) {};
41 /**
42  * @param {remoting.Host} host The host to connect to.
43  * @param {string} localJid Local jid.
44  * @param {remoting.CredentialsProvider} credentialsProvider
45  */
46 remoting.ClientPlugin.prototype.connect =
47     function(host, localJid, credentialsProvider) {};
49 /**
50  * @param {number} key The keycode to inject.
51  * @param {boolean} down True for press; false for a release.
52  */
53 remoting.ClientPlugin.prototype.injectKeyEvent =
54     function(key, down) {};
56 /**
57  * Sends a key combination to the host, by sending down events for
58  * the given keys, followed by up events in reverse order.
59  *
60  * @param {Array<number>} keys Key codes to be sent.
61  * @return {void} Nothing.
62  */
63 remoting.ClientPlugin.prototype.injectKeyCombination = function(keys) {};
65 /**
66  * Sets and stores the key remapping setting for the current host.
67  *
68  * @param {!Object} remappings Key mappings, specified as {from: to}, where
69  *     |from| and |to| are both USB keycodes, |from| is a decimal representation
70  *     (because object keys must be strings) and |to| is a number.
71  */
72 remoting.ClientPlugin.prototype.setRemapKeys = function(remappings) {};
74 /**
75  * @param {number} from
76  * @param {number} to
77  */
78 remoting.ClientPlugin.prototype.remapKey = function(from, to) {};
80 /**
81  * Release all keys currently being pressed.
82  */
83 remoting.ClientPlugin.prototype.releaseAllKeys = function() {};
85 /**
86  * @param {string} iq
87  */
88 remoting.ClientPlugin.prototype.onIncomingIq = function(iq) {};
90 /**
91  * @param {remoting.ClientSession.Capability} capability
92  * @return {boolean} True if the capability has been negotiated between
93  *     the client and host.
94  */
95 remoting.ClientPlugin.prototype.hasCapability = function(capability) {};
97 /**
98  * Sends a clipboard item to the host.
99  *
100  * @param {string} mimeType The MIME type of the clipboard item.
101  * @param {string} item The clipboard item.
102  */
103 remoting.ClientPlugin.prototype.sendClipboardItem =
104     function(mimeType, item) {};
107  * Notifies the plugin whether to send touch events to the host.
109  * @param {boolean} enable True if touch events should be sent.
110  */
111 remoting.ClientPlugin.prototype.enableTouchEvents = function(enable) {};
114  * Request that this client be paired with the current host.
116  * @param {string} clientName The human-readable name of the client.
117  * @param {function(string, string):void} onDone Callback to receive the
118  *     client id and shared secret when they are available.
119  */
120 remoting.ClientPlugin.prototype.requestPairing =
121     function(clientName, onDone) {};
124  * Allows automatic mouse-lock.
125  */
126 remoting.ClientPlugin.prototype.allowMouseLock = function() {};
129  * @param {boolean} pause True to pause the audio stream; false to resume it.
130  */
131 remoting.ClientPlugin.prototype.pauseAudio = function(pause) {};
134  * @param {boolean} pause True to pause the video stream; false to resume it.
135  */
136 remoting.ClientPlugin.prototype.pauseVideo = function(pause) {};
139  * @return {remoting.ClientSession.PerfStats} A summary of the connection
140  *     performance.
141  */
142 remoting.ClientPlugin.prototype.getPerfStats = function() {};
145  * @param {remoting.ClientPlugin.ConnectionEventHandler} handler
146  */
147 remoting.ClientPlugin.prototype.setConnectionEventHandler =
148     function(handler) {};
151  * @param {function(string, number, number):void} handler Callback for
152  *     processing large mouse cursor images. The first parameter is a data:
153  *     URL encoding the mouse cursor; the second and third parameters are
154  *     the cursor hotspot's x- and y-coordinates, respectively.
155  */
156 remoting.ClientPlugin.prototype.setMouseCursorHandler = function(handler) {};
159  * @param {function(string, string):void} handler Callback for processing
160  *    clipboard data injected from the host. The first parameter is the mime
161  *    type and the second parameter is the actual data.
162  */
163 remoting.ClientPlugin.prototype.setClipboardHandler = function(handler) {};
166  * @param {function({rects:Array<Array<number>>}):void|null} handler Callback
167  *     to receive dirty region information for each video frame, for debugging.
168  */
169 remoting.ClientPlugin.prototype.setDebugDirtyRegionHandler =
170     function(handler) {};
173  * @interface
174  */
175 remoting.ClientPlugin.ConnectionEventHandler = function() {};
178  * @param {string} iq
179  */
180 remoting.ClientPlugin.ConnectionEventHandler.prototype.onOutgoingIq =
181     function(iq) {};
184  * @param {string} msg
185  */
186 remoting.ClientPlugin.ConnectionEventHandler.prototype.onDebugMessage =
187     function(msg) {};
190  * @param {remoting.ClientSession.State} status The plugin's status.
191  * @param {remoting.ClientSession.ConnectionError} error The plugin's error
192  *        state, if any.
193  */
194 remoting.ClientPlugin.ConnectionEventHandler.prototype.
195     onConnectionStatusUpdate = function(status, error) {};
198  * @param {string} channel The channel name.
199  * @param {string} connectionType The new connection type.
200  */
201 remoting.ClientPlugin.ConnectionEventHandler.prototype.onRouteChanged =
202     function(channel, connectionType) {};
205  * @param {boolean} ready True if the connection is ready.
206  */
207 remoting.ClientPlugin.ConnectionEventHandler.prototype.onConnectionReady =
208     function(ready) {};
210 /** Called when the first video frame is received */
211 remoting.ClientPlugin.ConnectionEventHandler.prototype.onFirstFrameReceived =
212     function() {};
215  * @interface
216  */
217 remoting.ClientPluginFactory = function() {};
220  * @param {Element} container The container for the embed element.
221  * @param {Array<string>} requiredCapabilities
222  * @return {remoting.ClientPlugin} A new client plugin instance.
223  */
224 remoting.ClientPluginFactory.prototype.createPlugin =
225     function(container, requiredCapabilities) {};
228  * Preload the plugin to make instantiation faster when the user tries
229  * to connect.
230  */
231 remoting.ClientPluginFactory.prototype.preloadPlugin = function() {};
234  * @type {remoting.ClientPluginFactory}
235  */
236 remoting.ClientPlugin.factory = null;