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

Unified Diff: trunk/src/mojo/services/view_manager/root_node_manager.cc

Issue 304323005: Revert 273723 "Wire input events through the ViewManagerClient i..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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: trunk/src/mojo/services/view_manager/root_node_manager.cc
===================================================================
--- trunk/src/mojo/services/view_manager/root_node_manager.cc (revision 273734)
+++ trunk/src/mojo/services/view_manager/root_node_manager.cc (working copy)
@@ -127,14 +127,6 @@
}
}
-void RootNodeManager::ProcessViewInputEvent(const View* view,
- const ui::Event* event) {
- for (ConnectionMap::iterator i = connection_map_.begin();
- i != connection_map_.end(); ++i) {
- i->second->ProcessViewInputEvent(view, event);
- }
-}
-
void RootNodeManager::ProcessNodeDeleted(const NodeId& node) {
for (ConnectionMap::iterator i = connection_map_.begin();
i != connection_map_.end(); ++i) {
@@ -180,11 +172,6 @@
ProcessNodeViewReplaced(node, new_view, old_view);
}
-void RootNodeManager::OnViewInputEvent(const View* view,
- const ui::Event* event) {
- ProcessViewInputEvent(view, event);
-}
-
} // namespace service
} // namespace view_manager
} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698