blob: d8bb641206e14d8faf5e390763a175e26472d523 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// 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.
#ifndef PlatformFederatedCredential_h
#define PlatformFederatedCredential_h
#include "platform/credentialmanager/PlatformCredential.h"
#include "platform/heap/Handle.h"
#include "wtf/text/WTFString.h"
namespace blink {
class PLATFORM_EXPORT PlatformFederatedCredential final : public PlatformCredential {
WTF_MAKE_NONCOPYABLE(PlatformFederatedCredential);
public:
static PlatformFederatedCredential* create(const String& id, const String& name, const KURL& avatarURL, const KURL& federation);
virtual ~PlatformFederatedCredential();
const KURL& federation() const { return m_federation; }
virtual bool isFederated() override { return true; }
private:
PlatformFederatedCredential(const String& id, const String& name, const KURL& avatarURL, const KURL& federation);
KURL m_federation;
};
} // namespace blink
#endif // PlatformFederatedCredential_h
|