[go: nahoru, domu]

blob: 31ce974ea70cc6057b4fe8001983f8c84246b184 [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 base::MakeRefCounted<ExtendedAuthenticatorImpl>(consumer);
}
// static
scoped_refptr<ExtendedAuthenticator> ExtendedAuthenticator::Create(
AuthStatusConsumer* consumer) {
return base::MakeRefCounted<ExtendedAuthenticatorImpl>(consumer);
}
ExtendedAuthenticator::ExtendedAuthenticator() {
}
ExtendedAuthenticator::~ExtendedAuthenticator() {
}
} // namespace chromeos