diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-24 12:58:15 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-24 12:58:15 +0000 |
commit | 8bf7cbb223040ee3b472f5bce53fdb2ce2c905ec (patch) | |
tree | 1f52ba8e24f0cd2cf1ea16acfa0db26fb63f6424 /remoting/client/client_config.cc | |
parent | 836cdae36964a1f7597d75286cd3edb69b72b521 (diff) | |
download | chromium_src-8bf7cbb223040ee3b472f5bce53fdb2ce2c905ec.zip chromium_src-8bf7cbb223040ee3b472f5bce53fdb2ce2c905ec.tar.gz chromium_src-8bf7cbb223040ee3b472f5bce53fdb2ce2c905ec.tar.bz2 |
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
Diffstat (limited to 'remoting/client/client_config.cc')
-rw-r--r-- | remoting/client/client_config.cc | 7 |
1 files changed, 4 insertions, 3 deletions
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 |