1// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chromeos/login/auth/extended_authenticator.h"
6
7#include "chromeos/login/auth/extended_authenticator_impl.h"
8
9namespace chromeos {
10
11// static
12scoped_refptr<ExtendedAuthenticator> ExtendedAuthenticator::Create(
13    NewAuthStatusConsumer* consumer) {
14  return make_scoped_refptr(new ExtendedAuthenticatorImpl(consumer));
15}
16
17// static
18scoped_refptr<ExtendedAuthenticator> ExtendedAuthenticator::Create(
19      AuthStatusConsumer* consumer) {
20  return make_scoped_refptr(new ExtendedAuthenticatorImpl(consumer));
21}
22
23ExtendedAuthenticator::ExtendedAuthenticator() {
24}
25
26ExtendedAuthenticator::~ExtendedAuthenticator() {
27}
28
29}  // namespace chromeos
30