Index: third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp |
diff --git a/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp b/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp |
index 7e14779e14f9e9d2f17455d9beececa2ee878821..394752bea2214613879c122678028787962bea92 100644 |
--- a/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp |
+++ b/third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp |
@@ -155,10 +155,10 @@ void RemoteFrameClientImpl::forwardInputEvent(Event* event) { |
// FIXME: Add a check for out-of-process iframes enabled. |
std::unique_ptr<WebInputEvent> webEvent; |
if (event->isKeyboardEvent()) |
- webEvent = wrapUnique( |
+ webEvent = WTF::wrapUnique( |
new WebKeyboardEventBuilder(*static_cast<KeyboardEvent*>(event))); |
else if (event->isMouseEvent()) |
- webEvent = wrapUnique(new WebMouseEventBuilder( |
+ webEvent = WTF::wrapUnique(new WebMouseEventBuilder( |
m_webFrame->frame()->view(), |
m_webFrame->toImplBase()->frame()->ownerLayoutItem(), |
*static_cast<MouseEvent*>(event))); |