| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
| 4 */ | 4 */ |
| 5 | 5 |
| 6 /** | 6 /** |
| 7 * @fileoverview | 7 * @fileoverview |
| 8 * A class that provides an interface to a WCS connection. | 8 * A class that provides an interface to a WCS connection. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 /** | 139 /** |
| 140 * Sets the function called when an IQ stanza is received. | 140 * Sets the function called when an IQ stanza is received. |
| 141 * | 141 * |
| 142 * @param {function(string): void} onIq The function called when an IQ stanza | 142 * @param {function(string): void} onIq The function called when an IQ stanza |
| 143 * is received. | 143 * is received. |
| 144 * @return {void} Nothing. | 144 * @return {void} Nothing. |
| 145 */ | 145 */ |
| 146 remoting.Wcs.prototype.setOnIq = function(onIq) { | 146 remoting.Wcs.prototype.setOnIq = function(onIq) { |
| 147 this.onIq_ = onIq; | 147 this.onIq_ = onIq; |
| 148 }; | 148 }; |
| OLD | NEW |