| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ui/base/ozone/event_converter_ozone.h" |
| 6 |
| 7 #include "base/bind.h" |
| 8 #include "base/message_loop.h" |
| 9 #include "base/message_pump_ozone.h" |
| 10 #include "ui/base/events/event.h" |
| 11 |
| 12 namespace { |
| 13 |
| 14 void DispatchEventHelper(ui::Event* key) { |
| 15 base::MessagePumpOzone::Current()->Dispatch(key); |
| 16 } |
| 17 |
| 18 } // namespace |
| 19 |
| 20 namespace ui { |
| 21 |
| 22 void EventConverterOzone::DispatchEvent(ui::Event* event) { |
| 23 base::MessageLoop::current()->PostTask( |
| 24 FROM_HERE, base::Bind(&DispatchEventHelper, base::Owned(event))); |
| 25 } |
| 26 |
| 27 } // namespace ui |
| OLD | NEW |