blob: cd5a3f24489176dea1abeda0947cfd4ddbdbb44b [file] [log] [blame]
// Copyright 2014 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 "chromeos/login/auth/extended_authenticator.h"
#include "chromeos/login/auth/extended_authenticator_impl.h"
namespace chromeos {
// static
scoped_refptr<ExtendedAuthenticator> ExtendedAuthenticator::Create(
NewAuthStatusConsumer* consumer) {
return make_scoped_refptr(new ExtendedAuthenticatorImpl(consumer));
}
// static
scoped_refptr<ExtendedAuthenticator> ExtendedAuthenticator::Create(
AuthStatusConsumer* consumer) {
return make_scoped_refptr(new ExtendedAuthenticatorImpl(consumer));
}
ExtendedAuthenticator::ExtendedAuthenticator() {
}
ExtendedAuthenticator::~ExtendedAuthenticator() {
}
} // namespace chromeos