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

Unified Diff: third_party/WebKit/Source/web/WebViewFrameWidget.h

Issue 2896563002: Update WebLocalFrameImpl with WebLocalFrameBase to break dependencies. (Closed)
Patch Set: Rebase 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/WebViewFrameWidget.h
diff --git a/third_party/WebKit/Source/web/WebViewFrameWidget.h b/third_party/WebKit/Source/web/WebViewFrameWidget.h
index 925f764009e367c333506587425a0e4e8d0efa6a..93410d77b56512fd7455bba9b27c6d56a2a8db38 100644
--- a/third_party/WebKit/Source/web/WebViewFrameWidget.h
+++ b/third_party/WebKit/Source/web/WebViewFrameWidget.h
@@ -6,11 +6,11 @@
#define WebViewFrameWidget_h
#include "core/frame/WebFrameWidgetBase.h"
+#include "core/frame/WebLocalFrameBase.h"
#include "platform/heap/Handle.h"
#include "platform/wtf/Noncopyable.h"
#include "platform/wtf/RefPtr.h"
#include "web/WebInputMethodControllerImpl.h"
-#include "web/WebLocalFrameImpl.h"
namespace blink {
@@ -38,7 +38,7 @@ class WebViewFrameWidget : public WebFrameWidgetBase {
public:
explicit WebViewFrameWidget(WebWidgetClient&,
WebViewBase&,
- WebLocalFrameImpl&);
+ WebLocalFrameBase&);
virtual ~WebViewFrameWidget();
// WebFrameWidget overrides:
@@ -91,7 +91,7 @@ class WebViewFrameWidget : public WebFrameWidgetBase {
void SetBaseBackgroundColorOverride(WebColor) override;
void ClearBaseBackgroundColorOverride() override;
void SetBaseBackgroundColor(WebColor) override;
- WebLocalFrameImpl* LocalRoot() const override;
+ WebLocalFrameBase* LocalRoot() const override;
WebInputMethodControllerImpl* GetActiveWebInputMethodController()
const override;
@@ -110,7 +110,7 @@ class WebViewFrameWidget : public WebFrameWidgetBase {
private:
WebWidgetClient* client_;
RefPtr<WebViewBase> web_view_;
- Persistent<WebLocalFrameImpl> main_frame_;
+ Persistent<WebLocalFrameBase> main_frame_;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.h ('k') | third_party/WebKit/Source/web/WebViewFrameWidget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698