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

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

Issue 2721503002: Rename all uses of EmptyFrameLoaderClient with EmptyLocalFrameClient. (Closed)
Patch Set: Change V8 headers to user includes and introduce a space between system and user headers. Headers w… Created 3 years, 10 months 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/WebPagePopupImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebPagePopupImpl.cpp b/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
index 3da1db0c659446a78f615111a5b9454ddf0f2bf5..148cd0ecb1e42430ccb1d4be73f47c5a6854de08 100644
--- a/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
+++ b/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
@@ -35,6 +35,7 @@
#include "core/frame/FrameHost.h"
#include "core/frame/FrameView.h"
#include "core/frame/LocalFrame.h"
+#include "core/frame/LocalFrameClient.h"
#include "core/frame/Settings.h"
#include "core/frame/VisualViewport.h"
#include "core/input/EventHandler.h"
@@ -305,10 +306,10 @@ bool WebPagePopupImpl::initializePage() {
mainSettings.getScrollAnimatorEnabled());
provideContextFeaturesTo(*m_page, WTF::makeUnique<PagePopupFeaturesClient>());
- DEFINE_STATIC_LOCAL(FrameLoaderClient, emptyFrameLoaderClient,
- (EmptyFrameLoaderClient::create()));
+ DEFINE_STATIC_LOCAL(LocalFrameClient, emptyLocalFrameClient,
+ (EmptyLocalFrameClient::create()));
LocalFrame* frame =
- LocalFrame::create(&emptyFrameLoaderClient, &m_page->frameHost(), 0);
+ LocalFrame::create(&emptyLocalFrameClient, &m_page->frameHost(), 0);
frame->setPagePopupOwner(m_popupClient->ownerElement());
frame->setView(FrameView::create(*frame));
frame->init();

Powered by Google App Engine
This is Rietveld 408576698