Index: content/browser/android/sync_input_event_filter.h |
diff --git a/content/browser/android/sync_input_event_filter.h b/content/browser/android/sync_input_event_filter.h |
index dea75243c12441ede10ba6ddbb3c57487910e575..e2ce90b88acae3f94b61de36e21e610d25497c9b 100644 |
--- a/content/browser/android/sync_input_event_filter.h |
+++ b/content/browser/android/sync_input_event_filter.h |
@@ -10,7 +10,6 @@ |
#include "content/port/common/input_event_ack_state.h" |
namespace WebKit { |
-class WebCompositorInputHandler; |
class WebInputEvent; |
} |
@@ -26,16 +25,12 @@ class SyncInputEventFilter { |
~SyncInputEventFilter(); |
InputEventAckState HandleInputEvent(const WebKit::WebInputEvent& input_event); |
- void SetInputHandler(WebKit::WebCompositorInputHandler* input_handler); |
void ClearInputHandler(); |
private: |
// Used to DCHECK that input_handler_ changes are made on the correct thread. |
base::ThreadChecker thread_checker_; |
- class InputHandlerWrapper; |
- scoped_ptr<InputHandlerWrapper> input_handler_; |
- |
DISALLOW_COPY_AND_ASSIGN(SyncInputEventFilter); |
}; |