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

Unified Diff: content/shell/test_runner/web_view_test_client.cc

Issue 2762553002: Add canUpdateLayout & canHandleGestureEvent to WebViewClient. (Closed)
Patch Set: Fix merge issues. Created 3 years, 9 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 | « content/shell/test_runner/web_view_test_client.h ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/test_runner/web_view_test_client.cc
diff --git a/content/shell/test_runner/web_view_test_client.cc b/content/shell/test_runner/web_view_test_client.cc
index 1ac2d094e923dfd9b3b61f4b8f30db6184dd6289..52ca054fc027486e45e9019d0f98cb1c8b780152 100644
--- a/content/shell/test_runner/web_view_test_client.cc
+++ b/content/shell/test_runner/web_view_test_client.cc
@@ -144,4 +144,12 @@ TestRunner* WebViewTestClient::test_runner() {
return web_view_test_proxy_base_->test_interfaces()->GetTestRunner();
}
+bool WebViewTestClient::canHandleGestureEvent() {
+ return true;
+}
+
+bool WebViewTestClient::canUpdateLayout() {
+ return true;
+}
+
} // namespace test_runner
« no previous file with comments | « content/shell/test_runner/web_view_test_client.h ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698