From 8bf7cbb223040ee3b472f5bce53fdb2ce2c905ec Mon Sep 17 00:00:00 2001 From: "sergeyu@chromium.org" Date: Tue, 24 Jan 2012 12:58:15 +0000 Subject: Implement V2 authentication support in the client plugin. Changed client plugin interface so that it receives information needed to for V2 authentication. Also moved authenticator creation out of ConnectionToHost. BUG=105214 Review URL: http://codereview.chromium.org/9195004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118828 0039d316-1c4b-4281-b951-d872f2087c98 --- remoting/client/client_config.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'remoting/client/client_config.cc') diff --git a/remoting/client/client_config.cc b/remoting/client/client_config.cc index aed88df..3012a9b 100644 --- a/remoting/client/client_config.cc +++ b/remoting/client/client_config.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -6,10 +6,11 @@ namespace remoting { -ClientConfig::ClientConfig() { +ClientConfig::ClientConfig() + : authentication_method(protocol::AuthenticationMethod::Invalid()) { } ClientConfig::~ClientConfig() { } -} +} // namespace remoting -- cgit v1.1