| Index: third_party/WebKit/public/platform/WebCredentialManagerClient.h
|
| diff --git a/third_party/WebKit/public/platform/WebCredentialManagerClient.h b/third_party/WebKit/public/platform/WebCredentialManagerClient.h
|
| index f9e8049257da37bc6d7befa9bdba56e9bd186210..eba06e881f457b90cb7c2be217b640f3e8816b5b 100644
|
| --- a/third_party/WebKit/public/platform/WebCredentialManagerClient.h
|
| +++ b/third_party/WebKit/public/platform/WebCredentialManagerClient.h
|
| @@ -7,9 +7,10 @@
|
|
|
| #include "public/platform/WebCallbacks.h"
|
| #include "public/platform/WebCredentialManagerError.h"
|
| -#include "public/platform/WebPassOwnPtr.h"
|
| #include "public/platform/WebVector.h"
|
|
|
| +#include <memory>
|
| +
|
| namespace blink {
|
|
|
| class WebCredential;
|
| @@ -20,7 +21,7 @@ class WebURL;
|
| // 'credentialmanager' module.
|
| class WebCredentialManagerClient {
|
| public:
|
| - typedef WebCallbacks<WebPassOwnPtr<WebCredential>, WebCredentialManagerError> RequestCallbacks;
|
| + typedef WebCallbacks<std::unique_ptr<WebCredential>, WebCredentialManagerError> RequestCallbacks;
|
| typedef WebCallbacks<void, WebCredentialManagerError> NotificationCallbacks;
|
|
|
| // Ownership of the callback is transferred to the callee for each of
|
|
|