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

Unified Diff: third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.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/NavigatorContentUtilsClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.cpp b/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.cpp
index 7caff5862b5ee46c6e5b23cab66a58e995d6f3b1..7ed22eb75d4791e9fb701f99b3513a8e0f3559b8 100644
--- a/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.cpp
+++ b/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.cpp
@@ -4,18 +4,18 @@
#include "web/NavigatorContentUtilsClientImpl.h"
+#include "core/frame/WebLocalFrameBase.h"
#include "public/web/WebFrameClient.h"
-#include "web/WebLocalFrameImpl.h"
namespace blink {
NavigatorContentUtilsClientImpl* NavigatorContentUtilsClientImpl::Create(
- WebLocalFrameImpl* web_frame) {
+ WebLocalFrameBase* web_frame) {
return new NavigatorContentUtilsClientImpl(web_frame);
}
NavigatorContentUtilsClientImpl::NavigatorContentUtilsClientImpl(
- WebLocalFrameImpl* web_frame)
+ WebLocalFrameBase* web_frame)
: web_frame_(web_frame) {}
DEFINE_TRACE(NavigatorContentUtilsClientImpl) {
« no previous file with comments | « third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.h ('k') | third_party/WebKit/Source/web/PageOverlay.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698