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

Unified Diff: content/browser/android/sync_input_event_filter.h

Issue 15484013: Remove dead WebCompositorInputHandler related code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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.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);
};

Powered by Google App Engine
This is Rietveld 408576698