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 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 5 // Use of this source code is governed by a BSD-style license that can be |
| 6 // found in the LICENSE file. |
| 7 |
| 8 #ifndef WIN8_METRO_DRIVER_IME_IME_POPUP_MONITOR_H_ |
| 9 #define WIN8_METRO_DRIVER_IME_IME_POPUP_MONITOR_H_ |
| 10 |
| 11 namespace metro_driver { |
| 12 |
| 13 class ImePopupObserver; |
| 14 |
| 15 // Adds/Removes ImePopupObserver. Currently only one observer is supported at |
| 16 // the same time. |
| 17 void AddImePopupObserver(ImePopupObserver* observer); |
| 18 void RemoveImePopupObserver(ImePopupObserver* observer); |
| 19 |
| 20 } // namespace metro_driver |
| 21 |
| 22 #endif // WIN8_METRO_DRIVER_IME_IME_POPUP_MONITOR_H_ |
OLD | NEW |