Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.h

Issue 1880393002: CREDENTIAL: Implement 'SiteBoundCredential'. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ugh. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 PasswordCredential_h 5 #ifndef PasswordCredential_h
6 #define PasswordCredential_h 6 #define PasswordCredential_h
7 7
8 #include "bindings/core/v8/ScriptWrappable.h" 8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "bindings/core/v8/SerializedScriptValue.h" 9 #include "bindings/core/v8/SerializedScriptValue.h"
10 #include "bindings/modules/v8/UnionTypesModules.h" 10 #include "bindings/modules/v8/UnionTypesModules.h"
11 #include "modules/ModulesExport.h" 11 #include "modules/ModulesExport.h"
12 #include "modules/credentialmanager/Credential.h" 12 #include "modules/credentialmanager/SiteBoundCredential.h"
13 #include "platform/heap/Handle.h" 13 #include "platform/heap/Handle.h"
14 #include "platform/network/EncodedFormData.h" 14 #include "platform/network/EncodedFormData.h"
15 #include "platform/weborigin/KURL.h" 15 #include "platform/weborigin/KURL.h"
16 16
17 namespace blink { 17 namespace blink {
18 18
19 class FormData; 19 class FormData;
20 class FormDataOptions; 20 class FormDataOptions;
21 class HTMLFormElement; 21 class HTMLFormElement;
22 class PasswordCredentialData; 22 class PasswordCredentialData;
23 class WebPasswordCredential; 23 class WebPasswordCredential;
24 24
25 using CredentialPostBodyType = FormDataOrURLSearchParams; 25 using CredentialPostBodyType = FormDataOrURLSearchParams;
26 26
27 class MODULES_EXPORT PasswordCredential final : public Credential { 27 class MODULES_EXPORT PasswordCredential final : public SiteBoundCredential {
28 DEFINE_WRAPPERTYPEINFO(); 28 DEFINE_WRAPPERTYPEINFO();
29 public: 29 public:
30 static PasswordCredential* create(const PasswordCredentialData&, ExceptionSt ate&); 30 static PasswordCredential* create(const PasswordCredentialData&, ExceptionSt ate&);
31 static PasswordCredential* create(HTMLFormElement*, ExceptionState&); 31 static PasswordCredential* create(HTMLFormElement*, ExceptionState&);
32 static PasswordCredential* create(WebPasswordCredential*); 32 static PasswordCredential* create(WebPasswordCredential*);
33 33
34 // PasswordCredential.idl 34 // PasswordCredential.idl
35 void setIdName(const String& name) { m_idName = name; } 35 void setIdName(const String& name) { m_idName = name; }
36 const String& idName() const { return m_idName; } 36 const String& idName() const { return m_idName; }
37 37
(...skipping 13 matching lines...) Expand all
51 PasswordCredential(const String& id, const String& password, const String& n ame, const KURL& icon); 51 PasswordCredential(const String& id, const String& password, const String& n ame, const KURL& icon);
52 52
53 String m_idName; 53 String m_idName;
54 String m_passwordName; 54 String m_passwordName;
55 CredentialPostBodyType m_additionalData; 55 CredentialPostBodyType m_additionalData;
56 }; 56 };
57 57
58 } // namespace blink 58 } // namespace blink
59 59
60 #endif // PasswordCredential_h 60 #endif // PasswordCredential_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698