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

Unified Diff: content/browser/android/content_view_core_impl.cc

Issue 15920002: Fix WebView compositor input handling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Avoid DCHECKs when retrieving process ID Created 7 years, 6 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/browser/android/content_view_core_impl.h ('k') | content/browser/android/in_process/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/android/content_view_core_impl.cc
diff --git a/content/browser/android/content_view_core_impl.cc b/content/browser/android/content_view_core_impl.cc
index 851a53b684e210c6fda154a0d5fb536002194c9e..45186c04c0d788f97d7454ad7be1e40964b1e2b9 100644
--- a/content/browser/android/content_view_core_impl.cc
+++ b/content/browser/android/content_view_core_impl.cc
@@ -17,7 +17,6 @@
#include "content/browser/android/interstitial_page_delegate_android.h"
#include "content/browser/android/load_url_params.h"
#include "content/browser/android/media_player_manager_impl.h"
-#include "content/browser/android/sync_input_event_filter.h"
#include "content/browser/android/touch_point.h"
#include "content/browser/renderer_host/compositor_impl_android.h"
#include "content/browser/renderer_host/java/java_bound_object.h"
@@ -688,14 +687,6 @@ float ContentViewCoreImpl::GetOverdrawBottomHeightDip() const {
/ GetDpiScale();
}
-InputEventAckState ContentViewCoreImpl::FilterInputEvent(
- const WebKit::WebInputEvent& input_event) {
- if (!input_event_filter_)
- return INPUT_EVENT_ACK_STATE_NOT_CONSUMED;
-
- return input_event_filter_->HandleInputEvent(input_event);
-}
-
void ContentViewCoreImpl::AttachLayer(scoped_refptr<cc::Layer> layer) {
root_layer_->AddChild(layer);
}
« no previous file with comments | « content/browser/android/content_view_core_impl.h ('k') | content/browser/android/in_process/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698