diff options
author | lambroslambrou@chromium.org <lambroslambrou@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-25 15:52:00 +0000 |
---|---|---|
committer | lambroslambrou@chromium.org <lambroslambrou@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-25 15:52:00 +0000 |
commit | baaf80940b221830d51faee6a110e4ca28775d35 (patch) | |
tree | 59d3dbbe5714c2462cfcc23d78e7842825fe601d /remoting/host/user_authenticator_mac.cc | |
parent | 9d9b7f892057087b4f3fa6c2b80bc32a380d8d11 (diff) | |
download | chromium_src-baaf80940b221830d51faee6a110e4ca28775d35.zip chromium_src-baaf80940b221830d51faee6a110e4ca28775d35.tar.gz chromium_src-baaf80940b221830d51faee6a110e4ca28775d35.tar.bz2 |
Use PAM auth on Linux, and stubs on other platforms.
BUG=None
TEST=Enter correct or incorrect user/password into Local Login prompt.
Review URL: http://codereview.chromium.org/6566006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76050 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/user_authenticator_mac.cc')
-rw-r--r-- | remoting/host/user_authenticator_mac.cc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/remoting/host/user_authenticator_mac.cc b/remoting/host/user_authenticator_mac.cc new file mode 100644 index 0000000..956484a --- /dev/null +++ b/remoting/host/user_authenticator_mac.cc @@ -0,0 +1,14 @@ +// Copyright (c) 2011 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. + +#include "remoting/host/user_authenticator_fake.h" + +namespace remoting { + +// static +UserAuthenticator* UserAuthenticator::Create() { + return new UserAuthenticatorFake(); +} + +} // namespace remoting |