| Index: Source/platform/exported/WebCredential.cpp
|
| diff --git a/Source/platform/exported/WebCredential.cpp b/Source/platform/exported/WebCredential.cpp
|
| index db6097c1d75ffb0324ce9f746d39dd0a15dce89d..7f01394a32b0675c463d6ac81869a7ed35bb50f5 100644
|
| --- a/Source/platform/exported/WebCredential.cpp
|
| +++ b/Source/platform/exported/WebCredential.cpp
|
| @@ -24,6 +24,12 @@ WebCredential::WebCredential(PlatformCredential* credential)
|
| {
|
| }
|
|
|
| +WebCredential& WebCredential::operator=(PlatformCredential* credential)
|
| +{
|
| + m_platformCredential = credential;
|
| + return *this;
|
| +}
|
| +
|
| void WebCredential::reset()
|
| {
|
| m_platformCredential.reset();
|
|
|