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

Unified Diff: third_party/WebKit/Source/core/exported/WebViewBase.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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/WebLocalFrameBase.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/exported/WebViewBase.h
diff --git a/third_party/WebKit/Source/core/exported/WebViewBase.h b/third_party/WebKit/Source/core/exported/WebViewBase.h
index ebe4165520510c3d47bfa92c17ef6d5ccc094ddd..ed4582968a2cca1024b2f1623fbf0256b3b71325 100644
--- a/third_party/WebKit/Source/core/exported/WebViewBase.h
+++ b/third_party/WebKit/Source/core/exported/WebViewBase.h
@@ -36,7 +36,7 @@ class WebInputEvent;
class WebInputMethodControllerImpl;
class WebKeyboardEvent;
class WebLayer;
-class WebLocalFrameImpl;
+class WebLocalFrameBase;
class WebLayerTreeView;
class WebPagePopupImpl;
class WebSettingsImpl;
@@ -71,7 +71,7 @@ class WebViewBase : public WebView, public RefCounted<WebViewBase> {
// Returns the main frame associated with this view. This may be null when
// the page is shutting down, but will be valid at all other times.
- virtual WebLocalFrameImpl* MainFrameImpl() const = 0;
+ virtual WebLocalFrameBase* MainFrameImpl() const = 0;
virtual float DefaultMinimumPageScaleFactor() const = 0;
virtual float DefaultMaximumPageScaleFactor() const = 0;
@@ -137,8 +137,8 @@ class WebViewBase : public WebView, public RefCounted<WebViewBase> {
// 2) Calling updateAllLifecyclePhases() is a no-op.
// After calling WebWidget::updateAllLifecyclePhases(), expect to get this
// notification unless the view did not need a layout.
- virtual void LayoutUpdated(WebLocalFrameImpl*) = 0;
- virtual void ResizeAfterLayout(WebLocalFrameImpl*) = 0;
+ virtual void LayoutUpdated(WebLocalFrameBase*) = 0;
+ virtual void ResizeAfterLayout(WebLocalFrameBase*) = 0;
virtual void UpdatePageDefinedViewportConstraints(
const ViewportDescription&) = 0;
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/WebLocalFrameBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698