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

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

Issue 2848513002: Introduce the abstract class WebViewBase, to decouple WebViewImpl. (Closed)
Patch Set: Fix typo. Created 3 years, 8 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/ChromeClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
index 0713ecee5c17038f133aa7dc76d63356d94d4a17..08c8366d41776722df8098ebab7c22579f3e3855 100644
--- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
@@ -39,6 +39,7 @@
#include "core/dom/Fullscreen.h"
#include "core/dom/Node.h"
#include "core/events/UIEventWithKeyState.h"
+#include "core/exported/WebViewBase.h"
#include "core/frame/FrameView.h"
#include "core/frame/Settings.h"
#include "core/frame/VisualViewport.h"
@@ -123,7 +124,6 @@
#include "web/WebLocalFrameImpl.h"
#include "web/WebPluginContainerImpl.h"
#include "web/WebSettingsImpl.h"
-#include "web/WebViewImpl.h"
namespace blink {
@@ -347,7 +347,7 @@ WebNavigationPolicy GetNavigationPolicy(const WindowFeatures& features) {
NavigationPolicy policy = kNavigationPolicyNewForegroundTab;
if (as_popup)
policy = kNavigationPolicyNewPopup;
- UpdatePolicyForEvent(WebViewImpl::CurrentInputEvent(), &policy);
+ UpdatePolicyForEvent(WebViewBase::CurrentInputEvent(), &policy);
return static_cast<WebNavigationPolicy>(policy);
}
« no previous file with comments | « third_party/WebKit/Source/core/exported/WebViewBase.h ('k') | third_party/WebKit/Source/web/ColorChooserPopupUIController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698