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 "ash/host/ash_window_tree_host_unified.h" | 5 #include "ash/host/ash_window_tree_host_unified.h" |
6 #include "ash/host/root_window_transformer.h" | 6 #include "ash/host/root_window_transformer.h" |
| 7 #include "ash/ime/input_method_event_handler.h" |
7 #include "base/logging.h" | 8 #include "base/logging.h" |
8 #include "ui/aura/window.h" | 9 #include "ui/aura/window.h" |
9 #include "ui/aura/window_event_dispatcher.h" | 10 #include "ui/aura/window_event_dispatcher.h" |
10 #include "ui/aura/window_targeter.h" | 11 #include "ui/aura/window_targeter.h" |
11 #include "ui/compositor/compositor.h" | 12 #include "ui/compositor/compositor.h" |
12 #include "ui/events/event_processor.h" | 13 #include "ui/events/event_processor.h" |
13 #include "ui/events/null_event_targeter.h" | 14 #include "ui/events/null_event_targeter.h" |
14 #include "ui/gfx/geometry/insets.h" | 15 #include "ui/gfx/geometry/insets.h" |
15 | 16 |
16 namespace ash { | 17 namespace ash { |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 auto iter = | 175 auto iter = |
175 std::find_if(mirroring_hosts_.begin(), mirroring_hosts_.end(), | 176 std::find_if(mirroring_hosts_.begin(), mirroring_hosts_.end(), |
176 [window](AshWindowTreeHost* ash_host) { | 177 [window](AshWindowTreeHost* ash_host) { |
177 return ash_host->AsWindowTreeHost()->window() == window; | 178 return ash_host->AsWindowTreeHost()->window() == window; |
178 }); | 179 }); |
179 DCHECK(iter != mirroring_hosts_.end()); | 180 DCHECK(iter != mirroring_hosts_.end()); |
180 window->RemoveObserver(this); | 181 window->RemoveObserver(this); |
181 mirroring_hosts_.erase(iter); | 182 mirroring_hosts_.erase(iter); |
182 } | 183 } |
183 | 184 |
| 185 bool AshWindowTreeHostUnified::DispatchKeyEventPostIME( |
| 186 const ui::KeyEvent& event) { |
| 187 ui::KeyEvent event_copy(event); |
| 188 input_method_handler()->SetPostIME(true); |
| 189 ui::EventSource::DeliverEventToProcessor(&event_copy); |
| 190 input_method_handler()->SetPostIME(false); |
| 191 return event_copy.handled(); |
| 192 } |
| 193 |
| 194 ui::EventDispatchDetails AshWindowTreeHostUnified::DeliverEventToProcessor( |
| 195 ui::Event* event) { |
| 196 return ui::EventSource::DeliverEventToProcessor(event); |
| 197 } |
| 198 |
184 } // namespace ash | 199 } // namespace ash |
OLD | NEW |