blob: c606cfef56a10fbf1f2becb9024b11943d05976e [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 "config.h"
#include "platform/credentialmanager/PlatformFederatedCredential.h"
namespace blink {
PlatformFederatedCredential* PlatformFederatedCredential::create(const String& id, const KURL& federation, const String& name, const KURL& avatarURL)
{
return new PlatformFederatedCredential(id, federation, name, avatarURL);
}
PlatformFederatedCredential::PlatformFederatedCredential(const String& id, const KURL& federation, const String& name, const KURL& avatarURL)
: PlatformCredential(id, name, avatarURL)
, m_federation(federation)
{
}
PlatformFederatedCredential::~PlatformFederatedCredential()
{
}
} // namespace blink