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 "ui/views/mus/platform_window_mus.h" | 5 #include "ui/views/mus/platform_window_mus.h" |
6 | 6 |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 #include "components/bitmap_uploader/bitmap_uploader.h" | 8 #include "components/bitmap_uploader/bitmap_uploader.h" |
9 #include "components/mus/public/cpp/property_type_converters.h" | 9 #include "components/mus/public/cpp/property_type_converters.h" |
10 #include "components/mus/public/cpp/window_property.h" | 10 #include "components/mus/public/cpp/window_property.h" |
11 #include "components/mus/public/interfaces/window_manager.mojom.h" | 11 #include "components/mus/public/interfaces/window_manager.mojom.h" |
12 #include "mojo/converters/input_events/input_events_type_converters.h" | |
13 #include "ui/base/view_prop.h" | 12 #include "ui/base/view_prop.h" |
| 13 #include "ui/events/mojo/input_events_type_converters.h" |
14 #include "ui/platform_window/platform_window_delegate.h" | 14 #include "ui/platform_window/platform_window_delegate.h" |
15 #include "ui/views/mus/window_manager_connection.h" | 15 #include "ui/views/mus/window_manager_connection.h" |
16 | 16 |
17 using mus::mojom::EventResult; | 17 using mus::mojom::EventResult; |
18 | 18 |
19 namespace views { | 19 namespace views { |
20 | 20 |
21 namespace { | 21 namespace { |
22 | 22 |
23 static uint32_t accelerated_widget_count = 1; | 23 static uint32_t accelerated_widget_count = 1; |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 | 100 |
101 void PlatformWindowMus::ConfineCursorToBounds(const gfx::Rect& bounds) { | 101 void PlatformWindowMus::ConfineCursorToBounds(const gfx::Rect& bounds) { |
102 NOTIMPLEMENTED(); | 102 NOTIMPLEMENTED(); |
103 } | 103 } |
104 | 104 |
105 ui::PlatformImeController* PlatformWindowMus::GetPlatformImeController() { | 105 ui::PlatformImeController* PlatformWindowMus::GetPlatformImeController() { |
106 return nullptr; | 106 return nullptr; |
107 } | 107 } |
108 | 108 |
109 } // namespace views | 109 } // namespace views |
OLD | NEW |