| Index: third_party/WebKit/Source/platform/credentialmanager/PlatformFederatedCredential.cpp
|
| diff --git a/third_party/WebKit/Source/platform/credentialmanager/PlatformFederatedCredential.cpp b/third_party/WebKit/Source/platform/credentialmanager/PlatformFederatedCredential.cpp
|
| index c8930d1e9c3a58824e09909d9441493159945e93..8a3b11d2754df1a6e05c996d759479138b88d348 100644
|
| --- a/third_party/WebKit/Source/platform/credentialmanager/PlatformFederatedCredential.cpp
|
| +++ b/third_party/WebKit/Source/platform/credentialmanager/PlatformFederatedCredential.cpp
|
| @@ -6,12 +6,12 @@
|
|
|
| namespace blink {
|
|
|
| -PlatformFederatedCredential* PlatformFederatedCredential::create(const String& id, const KURL& provider, const String& name, const KURL& iconURL)
|
| +PlatformFederatedCredential* PlatformFederatedCredential::create(const String& id, PassRefPtr<SecurityOrigin> provider, const String& name, const KURL& iconURL)
|
| {
|
| return new PlatformFederatedCredential(id, provider, name, iconURL);
|
| }
|
|
|
| -PlatformFederatedCredential::PlatformFederatedCredential(const String& id, const KURL& provider, const String& name, const KURL& iconURL)
|
| +PlatformFederatedCredential::PlatformFederatedCredential(const String& id, PassRefPtr<SecurityOrigin> provider, const String& name, const KURL& iconURL)
|
| : PlatformCredential(id, name, iconURL)
|
| , m_provider(provider)
|
| {
|
|
|