Update V8 to version 4.5.80.
[chromium-blink-merge.git] / chromeos / login / auth / extended_authenticator.cc
blobcd5a3f24489176dea1abeda0947cfd4ddbdbb44b
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.
5 #include "chromeos/login/auth/extended_authenticator.h"
7 #include "chromeos/login/auth/extended_authenticator_impl.h"
9 namespace chromeos {
11 // static
12 scoped_refptr<ExtendedAuthenticator> ExtendedAuthenticator::Create(
13 NewAuthStatusConsumer* consumer) {
14 return make_scoped_refptr(new ExtendedAuthenticatorImpl(consumer));
17 // static
18 scoped_refptr<ExtendedAuthenticator> ExtendedAuthenticator::Create(
19 AuthStatusConsumer* consumer) {
20 return make_scoped_refptr(new ExtendedAuthenticatorImpl(consumer));
23 ExtendedAuthenticator::ExtendedAuthenticator() {
26 ExtendedAuthenticator::~ExtendedAuthenticator() {
29 } // namespace chromeos