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

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

Issue 2877363002: Move more classes over to use WebLocalFrameBase instead of WebLocalFrameImpl. (Closed)
Patch Set: Created 3 years, 7 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/RemoteFrameOwner.cpp
diff --git a/third_party/WebKit/Source/web/RemoteFrameOwner.cpp b/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
index b97eee69e96630d3630e7020550bea8991fcbb94..85b667f006d762215d08a94aade57c91c70174f2 100644
--- a/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
+++ b/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
@@ -5,8 +5,8 @@
#include "web/RemoteFrameOwner.h"
#include "core/frame/LocalFrame.h"
+#include "core/frame/WebLocalFrameBase.h"
#include "public/web/WebFrameClient.h"
-#include "web/WebLocalFrameImpl.h"
namespace blink {
@@ -47,8 +47,8 @@ void RemoteFrameOwner::ClearContentFrame() {
}
void RemoteFrameOwner::DispatchLoad() {
- WebLocalFrameImpl* web_frame =
- WebLocalFrameImpl::FromFrame(ToLocalFrame(*frame_));
+ WebLocalFrameBase* web_frame =
+ WebLocalFrameBase::FromFrame(ToLocalFrame(*frame_));
web_frame->Client()->DispatchLoad();
}
« no previous file with comments | « third_party/WebKit/Source/web/PageOverlay.cpp ('k') | third_party/WebKit/Source/web/StorageQuotaClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698