| 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 8a3b11d2754df1a6e05c996d759479138b88d348..5983d5d29adb28f78388e666f9ba6c2b750527f2 100644
|
| --- a/third_party/WebKit/Source/platform/credentialmanager/PlatformFederatedCredential.cpp
|
| +++ b/third_party/WebKit/Source/platform/credentialmanager/PlatformFederatedCredential.cpp
|
| @@ -8,7 +8,7 @@ namespace blink {
|
|
|
| PlatformFederatedCredential* PlatformFederatedCredential::create(const String& id, PassRefPtr<SecurityOrigin> provider, const String& name, const KURL& iconURL)
|
| {
|
| - return new PlatformFederatedCredential(id, provider, name, iconURL);
|
| + return new PlatformFederatedCredential(id, std::move(provider), name, iconURL);
|
| }
|
|
|
| PlatformFederatedCredential::PlatformFederatedCredential(const String& id, PassRefPtr<SecurityOrigin> provider, const String& name, const KURL& iconURL)
|
|
|