Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef SERVICES_UI_COMMON_ACCELERATOR_TRANSPORT_UTIL_H_ | |
|
mfomitchev
2016/11/29 01:55:46
Rather than creating a new file, perhaps rename se
thanhph
2016/11/29 16:50:17
Done, thanks!
| |
| 6 #define SERVICES_UI_COMMON_ACCELERATOR_TRANSPORT_UTIL_H_ | |
| 7 | |
| 8 #include "services/ui/public/interfaces/event_matcher.mojom.h" | |
| 9 #include "services/ui/public/interfaces/window_manager.mojom.h" | |
| 10 | |
| 11 namespace ash { | |
| 12 namespace mus { | |
| 13 | |
| 14 // Adding an accelerator to a vector of accelerators. | |
|
mfomitchev
2016/11/29 01:55:45
A little more detail would be nice, since there's
thanhph
2016/11/29 16:50:17
Done, thanks!
| |
| 15 std::vector<ui::mojom::AcceleratorTransportPtr> AddAcceleratorHelper( | |
| 16 std::vector<ui::mojom::AcceleratorTransportPtr> accelerators, | |
| 17 uint32_t id, | |
| 18 ui::mojom::EventMatcherPtr event_matcher); | |
| 19 | |
| 20 } // namespace mus | |
| 21 } // namespace ash | |
| 22 | |
| 23 #endif // SERVICES_UI_COMMON_ACCELERATOR_TRANSPORT_UTIL_H_ | |
| OLD | NEW |