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

Unified Diff: third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.h

Issue 1446963002: CREDENTIAL: Teach Fetch to handle PasswordCredential objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@opaque
Patch Set: webexposed Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.h
diff --git a/third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.h b/third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.h
index bc5f878d89348feebe5245084e41f2d1ff1f2a85..38ac8d7914ec011320ee1b2b5d2f8f3c7a243865 100644
--- a/third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.h
+++ b/third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.h
@@ -7,8 +7,10 @@
#include "bindings/core/v8/ScriptWrappable.h"
#include "bindings/core/v8/SerializedScriptValue.h"
+#include "bindings/modules/v8/UnionTypesModules.h"
#include "modules/credentialmanager/Credential.h"
#include "platform/heap/Handle.h"
+#include "platform/network/EncodedFormData.h"
#include "platform/weborigin/KURL.h"
namespace blink {
@@ -18,6 +20,8 @@ class FormDataOptions;
class PasswordCredentialData;
class WebPasswordCredential;
+using CredentialPostBodyType = FormDataOrURLSearchParams;
+
class PasswordCredential final : public Credential {
DEFINE_WRAPPERTYPEINFO();
public:
@@ -25,15 +29,27 @@ public:
static PasswordCredential* create(WebPasswordCredential*);
// PasswordCredential.idl
- FormData* toFormData(ScriptState*, const FormDataOptions&);
+ void setIdName(const String& name) { m_idName = name; }
+ const String& idName() const { return m_idName; }
+
+ void setPasswordName(const String& name) { m_passwordName = name; }
+ const String& passwordName() const { return m_passwordName; }
+
+ void setAdditionalData(const CredentialPostBodyType& data) { m_additionalData = data; }
+ void additionalData(CredentialPostBodyType& out) const { out = m_additionalData; }
+ // Internal methods
+ PassRefPtr<EncodedFormData> encodeFormData() const;
+ const String& password() const;
DECLARE_VIRTUAL_TRACE();
private:
PasswordCredential(WebPasswordCredential*);
PasswordCredential(const String& id, const String& password, const String& name, const KURL& icon);
- const String& password() const;
+ String m_idName;
+ String m_passwordName;
+ CredentialPostBodyType m_additionalData;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698