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

Unified Diff: Source/platform/credentialmanager/PlatformLocalCredential.cpp

Issue 661973002: Credential Manager: JavaScript arguments make more sense in a different order. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git/+/master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: Source/platform/credentialmanager/PlatformLocalCredential.cpp
diff --git a/Source/platform/credentialmanager/PlatformLocalCredential.cpp b/Source/platform/credentialmanager/PlatformLocalCredential.cpp
index 90a93aec76cb639ab83a4e95bdb081fe2871d1a3..207b57ececb5f1bd2cc7b8a4b6032cf06400aa69 100644
--- a/Source/platform/credentialmanager/PlatformLocalCredential.cpp
+++ b/Source/platform/credentialmanager/PlatformLocalCredential.cpp
@@ -7,12 +7,12 @@
namespace blink {
-PlatformLocalCredential* PlatformLocalCredential::create(const String& id, const String& name, const KURL& avatarURL, const String& password)
+PlatformLocalCredential* PlatformLocalCredential::create(const String& id, const String& password, const String& name, const KURL& avatarURL)
{
- return new PlatformLocalCredential(id, name, avatarURL, password);
+ return new PlatformLocalCredential(id, password, name, avatarURL);
}
-PlatformLocalCredential::PlatformLocalCredential(const String& id, const String& name, const KURL& avatarURL, const String& password)
+PlatformLocalCredential::PlatformLocalCredential(const String& id, const String& password, const String& name, const KURL& avatarURL)
: PlatformCredential(id, name, avatarURL)
, m_password(password)
{
« no previous file with comments | « Source/platform/credentialmanager/PlatformLocalCredential.h ('k') | Source/platform/exported/WebFederatedCredential.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698