Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1054)

Unified Diff: third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)));
« no previous file with comments | « third_party/WebKit/Source/web/PageOverlayTest.cpp ('k') | third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698