| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "mojo/public/c/gles2/gles2.h" | 5 #include "mojo/public/c/gles2/gles2.h" |
| 6 #include "mojo/services/public/cpp/geometry/geometry_type_converters.h" | 6 #include "mojo/services/public/cpp/geometry/geometry_type_converters.h" |
| 7 #include "mojo/services/public/cpp/input_events/input_events_type_converters.h" | 7 #include "mojo/services/public/cpp/input_events/input_events_type_converters.h" |
| 8 #include "mojo/services/view_manager/connection_manager.h" |
| 8 #include "mojo/services/view_manager/context_factory_impl.h" | 9 #include "mojo/services/view_manager/context_factory_impl.h" |
| 9 #include "mojo/services/view_manager/root_node_manager.h" | |
| 10 #include "mojo/services/view_manager/window_tree_host_impl.h" | 10 #include "mojo/services/view_manager/window_tree_host_impl.h" |
| 11 #include "ui/aura/env.h" | 11 #include "ui/aura/env.h" |
| 12 #include "ui/aura/layout_manager.h" | 12 #include "ui/aura/layout_manager.h" |
| 13 #include "ui/aura/window.h" | 13 #include "ui/aura/window.h" |
| 14 #include "ui/aura/window_event_dispatcher.h" | 14 #include "ui/aura/window_event_dispatcher.h" |
| 15 #include "ui/compositor/compositor.h" | 15 #include "ui/compositor/compositor.h" |
| 16 #include "ui/events/event.h" | 16 #include "ui/events/event.h" |
| 17 #include "ui/events/event_constants.h" | 17 #include "ui/events/event_constants.h" |
| 18 #include "ui/gfx/geometry/insets.h" | 18 #include "ui/gfx/geometry/insets.h" |
| 19 #include "ui/gfx/geometry/rect.h" | 19 #include "ui/gfx/geometry/rect.h" |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 } | 192 } |
| 193 | 193 |
| 194 void WindowTreeHostImpl::OnEvent(EventPtr event, | 194 void WindowTreeHostImpl::OnEvent(EventPtr event, |
| 195 const mojo::Callback<void()>& callback) { | 195 const mojo::Callback<void()>& callback) { |
| 196 event_received_callback_.Run(event.Pass()); | 196 event_received_callback_.Run(event.Pass()); |
| 197 callback.Run(); | 197 callback.Run(); |
| 198 }; | 198 }; |
| 199 | 199 |
| 200 } // namespace service | 200 } // namespace service |
| 201 } // namespace mojo | 201 } // namespace mojo |
| OLD | NEW |