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

Unified Diff: content/browser/android/sync_input_event_filter.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
Index: content/browser/android/sync_input_event_filter.cc
diff --git a/content/browser/android/sync_input_event_filter.cc b/content/browser/android/sync_input_event_filter.cc
deleted file mode 100644
index fb252c360cfdb4e37f139ea77b237bd9a4a78755..0000000000000000000000000000000000000000
--- a/content/browser/android/sync_input_event_filter.cc
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "base/debug/trace_event.h"
-#include "content/browser/android/sync_input_event_filter.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
-
-using WebKit::WebInputEvent;
-
-namespace content {
-
-//------------------------------------------------------------------------------
-
-SyncInputEventFilter::SyncInputEventFilter() {
-}
-
-SyncInputEventFilter::~SyncInputEventFilter() {
- DCHECK(thread_checker_.CalledOnValidThread());
-}
-
-InputEventAckState SyncInputEventFilter::HandleInputEvent(
- const WebInputEvent& event) {
- return INPUT_EVENT_ACK_STATE_NOT_CONSUMED;
-}
-
-void SyncInputEventFilter::ClearInputHandler() {
- DCHECK(thread_checker_.CalledOnValidThread());
-}
-
-} // namespace content
« no previous file with comments | « content/browser/android/sync_input_event_filter.h ('k') | content/browser/renderer_host/render_widget_host_view_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698