Index: Source/platform/exported/WebLocalCredential.cpp |
diff --git a/Source/platform/exported/WebLocalCredential.cpp b/Source/platform/exported/WebLocalCredential.cpp |
index 84c282e20f971fa46d16c4d6f38076e40aba2afc..c05638e7790ebd4240ec4108d697f20619f5f873 100644 |
--- a/Source/platform/exported/WebLocalCredential.cpp |
+++ b/Source/platform/exported/WebLocalCredential.cpp |
@@ -8,9 +8,14 @@ |
#include "platform/credentialmanager/PlatformLocalCredential.h" |
namespace blink { |
+WebLocalCredential::WebLocalCredential(const WebString& id, const WebString& password, const WebString& name, const WebURL& avatarURL) |
+ : WebCredential(PlatformLocalCredential::create(id, password, name, avatarURL)) |
+{ |
+} |
+// FIXME: Throw this away once it's unused on the Chromium side. |
WebLocalCredential::WebLocalCredential(const WebString& id, const WebString& name, const WebURL& avatarURL, const WebString& password) |
- : WebCredential(PlatformLocalCredential::create(id, name, avatarURL, password)) |
+ : WebCredential(PlatformLocalCredential::create(id, password, name, avatarURL)) |
{ |
} |