| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef PlatformPasswordCredential_h | 5 #ifndef PlatformPasswordCredential_h |
| 6 #define PlatformPasswordCredential_h | 6 #define PlatformPasswordCredential_h |
| 7 | 7 |
| 8 #include "platform/credentialmanager/PlatformCredential.h" | 8 #include "platform/credentialmanager/PlatformCredential.h" |
| 9 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
| 10 #include "wtf/text/WTFString.h" | 10 #include "platform/wtf/text/WTFString.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class PLATFORM_EXPORT PlatformPasswordCredential final | 14 class PLATFORM_EXPORT PlatformPasswordCredential final |
| 15 : public PlatformCredential { | 15 : public PlatformCredential { |
| 16 WTF_MAKE_NONCOPYABLE(PlatformPasswordCredential); | 16 WTF_MAKE_NONCOPYABLE(PlatformPasswordCredential); |
| 17 | 17 |
| 18 public: | 18 public: |
| 19 static PlatformPasswordCredential* Create(const String& id, | 19 static PlatformPasswordCredential* Create(const String& id, |
| 20 const String& password, | 20 const String& password, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 31 const String& password, | 31 const String& password, |
| 32 const String& name, | 32 const String& name, |
| 33 const KURL& icon_url); | 33 const KURL& icon_url); |
| 34 | 34 |
| 35 String password_; | 35 String password_; |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 } // namespace blink | 38 } // namespace blink |
| 39 | 39 |
| 40 #endif // PlatformPasswordCredential_h | 40 #endif // PlatformPasswordCredential_h |
| OLD | NEW |