| Index: third_party/WebKit/public/platform/WebRTCCertificate.h
|
| diff --git a/third_party/WebKit/public/platform/WebRTCCertificate.h b/third_party/WebKit/public/platform/WebRTCCertificate.h
|
| index 4480acf521ecef329ed30c0ac13f8ee95f93db8b..809839266a611882b6fed88293bb59a7d6e43ba6 100644
|
| --- a/third_party/WebKit/public/platform/WebRTCCertificate.h
|
| +++ b/third_party/WebKit/public/platform/WebRTCCertificate.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef WebRTCCertificate_h
|
| #define WebRTCCertificate_h
|
|
|
| -#include "public/platform/WebPassOwnPtr.h"
|
| #include "public/platform/WebRTCKeyParams.h"
|
|
|
| +#include <memory>
|
| +
|
| namespace blink {
|
|
|
| // WebRTCCertificate is an interface defining what Blink needs to know about certificates,
|
| @@ -23,7 +24,7 @@ public:
|
| // Copies the WebRTCCertificate object without copying the underlying implementation
|
| // specific (WebRTC layer) certificate. When all copies are destroyed the underlying
|
| // data is freed.
|
| - virtual WebPassOwnPtr<WebRTCCertificate> shallowCopy() const = 0;
|
| + virtual std::unique_ptr<WebRTCCertificate> shallowCopy() const = 0;
|
|
|
| virtual const WebRTCKeyParams& keyParams() const = 0;
|
|
|
|
|