123456789101112131415161718192021222324 |
- #ifndef ATOM_COMMON_KEYBOARD_UTIL_H_
- #define ATOM_COMMON_KEYBOARD_UTIL_H_
- #include <string>
- #include "ui/events/keycodes/keyboard_codes.h"
- namespace atom {
- ui::KeyboardCode KeyboardCodeFromStr(const std::string& str, bool* shifted);
- int WebEventModifiersToEventFlags(int modifiers);
- }
- #endif
|