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.
6 #include "platform/credentialmanager/PlatformFederatedCredential.h"
10 PlatformFederatedCredential
* PlatformFederatedCredential::create(const String
& id
, const KURL
& provider
, const String
& name
, const KURL
& iconURL
)
12 return new PlatformFederatedCredential(id
, provider
, name
, iconURL
);
15 PlatformFederatedCredential::PlatformFederatedCredential(const String
& id
, const KURL
& provider
, const String
& name
, const KURL
& iconURL
)
16 : PlatformCredential(id
, name
, iconURL
)
17 , m_provider(provider
)
22 PlatformFederatedCredential::~PlatformFederatedCredential()