Index: sky/tools/debugger/debugger.cc |
diff --git a/sky/tools/debugger/debugger.cc b/sky/tools/debugger/debugger.cc |
index 77cc2615ec1d627620da16ff879e72cae552c2b2..ca7d8e6273c44944ec6816e18d6a98857d7579c7 100644 |
--- a/sky/tools/debugger/debugger.cc |
+++ b/sky/tools/debugger/debugger.cc |
@@ -83,16 +83,6 @@ void SkyDebugger::OnViewBoundsChanged(mojo::View* view, |
content_->SetBounds(new_bounds); |
} |
-void SkyDebugger::OnViewInputEvent( |
- mojo::View* view, const mojo::EventPtr& event) { |
- if (view != root_) |
- return; |
- // Currently, the event targeting system is broken for mojo::Views, so we |
- // blindly forward events from the root to the content view. Once event |
- // targeting works, we should be able to rip out this code. |
- window_manager_app_->DispatchInputEventToView(content_, event.Clone()); |
-} |
- |
void SkyDebugger::Create(mojo::ApplicationConnection* connection, |
mojo::InterfaceRequest<Debugger> request) { |
mojo::WeakBindToRequest(this, &request); |