| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "content/browser/renderer_host/render_widget_host_view_mus.h" | 5 #include "content/browser/renderer_host/render_widget_host_view_mus.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "components/mus/public/cpp/property_type_converters.h" | |
| 11 #include "components/mus/public/cpp/window.h" | |
| 12 #include "components/mus/public/cpp/window_property.h" | |
| 13 #include "components/mus/public/cpp/window_tree_client.h" | |
| 14 #include "components/mus/public/interfaces/window_manager_constants.mojom.h" | |
| 15 #include "content/browser/renderer_host/render_process_host_impl.h" | 10 #include "content/browser/renderer_host/render_process_host_impl.h" |
| 16 #include "content/browser/renderer_host/render_widget_host_impl.h" | 11 #include "content/browser/renderer_host/render_widget_host_impl.h" |
| 17 #include "content/common/render_widget_window_tree_client_factory.mojom.h" | 12 #include "content/common/render_widget_window_tree_client_factory.mojom.h" |
| 18 #include "content/common/text_input_state.h" | 13 #include "content/common/text_input_state.h" |
| 19 #include "content/public/common/mojo_shell_connection.h" | 14 #include "content/public/common/mojo_shell_connection.h" |
| 20 #include "services/shell/public/cpp/connector.h" | 15 #include "services/shell/public/cpp/connector.h" |
| 16 #include "services/ui/public/cpp/property_type_converters.h" |
| 17 #include "services/ui/public/cpp/window.h" |
| 18 #include "services/ui/public/cpp/window_property.h" |
| 19 #include "services/ui/public/cpp/window_tree_client.h" |
| 20 #include "services/ui/public/interfaces/window_manager_constants.mojom.h" |
| 21 #include "ui/aura/client/screen_position_client.h" | 21 #include "ui/aura/client/screen_position_client.h" |
| 22 #include "ui/aura/window.h" | 22 #include "ui/aura/window.h" |
| 23 #include "ui/base/hit_test.h" | 23 #include "ui/base/hit_test.h" |
| 24 | 24 |
| 25 namespace blink { | 25 namespace blink { |
| 26 struct WebScreenInfo; | 26 struct WebScreenInfo; |
| 27 } | 27 } |
| 28 | 28 |
| 29 namespace content { | 29 namespace content { |
| 30 | 30 |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 | 305 |
| 306 void RenderWidgetHostViewMus::OnWindowInputEvent( | 306 void RenderWidgetHostViewMus::OnWindowInputEvent( |
| 307 mus::Window* window, | 307 mus::Window* window, |
| 308 const ui::Event& event, | 308 const ui::Event& event, |
| 309 std::unique_ptr<base::Callback<void(mus::mojom::EventResult)>>* | 309 std::unique_ptr<base::Callback<void(mus::mojom::EventResult)>>* |
| 310 ack_callback) { | 310 ack_callback) { |
| 311 // TODO(sad): Dispatch |event| to the RenderWidgetHost. | 311 // TODO(sad): Dispatch |event| to the RenderWidgetHost. |
| 312 } | 312 } |
| 313 | 313 |
| 314 } // namespace content | 314 } // namespace content |
| OLD | NEW |