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

Side by Side Diff: remoting/webapp/base/js/log_to_server.js

Issue 1397463003: Report the Auth method for me2me connections. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 unified diff | Download patch
OLDNEW
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
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) {};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698