| Index: third_party/WebKit/Source/platform/WaitableEvent.h
|
| diff --git a/third_party/WebKit/Source/platform/WaitableEvent.h b/third_party/WebKit/Source/platform/WaitableEvent.h
|
| index 8b227cce3f10899f6d6dcab3263ac6fd16ea794b..dad4a30a35b4211d082593cec2b7944e683bf72d 100644
|
| --- a/third_party/WebKit/Source/platform/WaitableEvent.h
|
| +++ b/third_party/WebKit/Source/platform/WaitableEvent.h
|
| @@ -32,8 +32,8 @@
|
| #define WaitableEvent_h
|
|
|
| #include "platform/PlatformExport.h"
|
| -#include "wtf/OwnPtr.h"
|
| #include "wtf/Vector.h"
|
| +#include <memory>
|
|
|
| namespace base {
|
| class WaitableEvent;
|
| @@ -78,7 +78,7 @@ private:
|
| WaitableEvent(const WaitableEvent&) = delete;
|
| void operator=(const WaitableEvent&) = delete;
|
|
|
| - OwnPtr<base::WaitableEvent> m_impl;
|
| + std::unique_ptr<base::WaitableEvent> m_impl;
|
| };
|
|
|
| } // namespace blink
|
|
|