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

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

Issue 2848513002: Introduce the abstract class WebViewBase, to decouple WebViewImpl. (Closed)
Patch Set: Add comments to WebViewBase. 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/WebViewImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
index 6a48968a73f395f11d48dd8613817d147d396a1a..68d243c7a5dab1c269c13595ac0786686a634a9b 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
@@ -284,6 +284,10 @@ WebViewImpl* WebViewImpl::Create(WebViewClient* client,
return AdoptRef(new WebViewImpl(client, visibility_state)).LeakRef();
}
+const WebInputEvent* WebViewBase::CurrentInputEvent() {
+ return WebViewImpl::CurrentInputEvent();
+}
+
void WebView::SetUseExternalPopupMenus(bool use_external_popup_menus) {
g_should_use_external_popup_menus = use_external_popup_menus;
}

Powered by Google App Engine
This is Rietveld 408576698