| // 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 PlatformCredential_h |
| #define PlatformCredential_h |
| |
| #include "platform/heap/Handle.h" |
| #include "platform/weborigin/KURL.h" |
| #include "platform/wtf/text/WTFString.h" |
| |
| namespace blink { |
| |
| class PLATFORM_EXPORT PlatformCredential |
| : public GarbageCollectedFinalized<PlatformCredential> { |
| WTF_MAKE_NONCOPYABLE(PlatformCredential); |
| |
| public: |
| static PlatformCredential* Create(const String& id, |
| const String& name, |
| const KURL& icon_url); |
| virtual ~PlatformCredential(); |
| |
| const String& Id() const { return id_; } |
| const String& GetName() const { return name_; } |
| const KURL& GetIconURL() const { return icon_url_; } |
| const String& GetType() const { return type_; } |
| |
| virtual bool IsPassword() { return false; } |
| virtual bool IsFederated() { return false; } |
| |
| DEFINE_INLINE_VIRTUAL_TRACE() {} |
| |
| protected: |
| PlatformCredential(const String& id, |
| const String& name, |
| const KURL& icon_url); |
| |
| void SetType(const String& type) { type_ = type; } |
| |
| private: |
| String id_; |
| String name_; |
| KURL icon_url_; |
| String type_; |
| }; |
| |
| } // namespace blink |
| |
| #endif // PlatformCredential_h |