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 * @fileoverview | 6 * @fileoverview |
7 * Module for sending log entries to the server. | 7 * Module for sending log entries to the server. |
8 */ | 8 */ |
9 | 9 |
10 'use strict'; | 10 'use strict'; |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 */ | 304 */ |
305 remoting.LogToServer.prototype.setHostStatusUpdateElapsedTime = function(time) { | 305 remoting.LogToServer.prototype.setHostStatusUpdateElapsedTime = function(time) { |
306 }; | 306 }; |
307 | 307 |
308 /** | 308 /** |
309 * Stub. | 309 * Stub. |
310 * @param {string} hostOSVersion Version of the host OS for current session. | 310 * @param {string} hostOSVersion Version of the host OS for current session. |
311 * @return {void} Nothing. | 311 * @return {void} Nothing. |
312 */ | 312 */ |
313 remoting.LogToServer.prototype.setHostOSVersion = function(hostOSVersion) {}; | 313 remoting.LogToServer.prototype.setHostOSVersion = function(hostOSVersion) {}; |
| 314 |
| 315 /** |
| 316 * Stub. |
| 317 * @override {remoting.Logger} |
| 318 */ |
| 319 remoting.LogToServer.prototype.setAuthMethod = function(authMethod) {}; |
OLD | NEW |