Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 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 ASH_TOUCH_TOUCHSCREEN_UTIL_H_ | |
| 6 #define ASH_TOUCH_TOUCHSCREEN_UTIL_H_ | |
| 7 | |
| 8 #include <vector> | |
| 9 | |
| 10 #include "ash/ash_export.h" | |
| 11 #include "ash/display/display_info.h" | |
| 12 | |
| 13 namespace ash { | |
| 14 | |
| 15 // Given a list of displays, it queries for the active touchscreens and | |
|
Daniel Erat
2014/09/11 20:34:00
nit: s/it //
dnicoara
2014/09/11 21:08:54
Done.
| |
| 16 // associates them. | |
| 17 ASH_EXPORT void AssociateTouchscreens(std::vector<DisplayInfo>* displays); | |
| 18 | |
| 19 } // namespace ash | |
| 20 | |
| 21 #endif // ASH_TOUCH_TOUCHSCREEN_UTIL_H_ | |
| OLD | NEW |