OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef SERVICES_KEYBOARD_NATIVE_TEXT_UPDATE_KEY_H_ | 5 #ifndef SERVICES_KEYBOARD_NATIVE_TEXT_UPDATE_KEY_H_ |
6 #define SERVICES_KEYBOARD_NATIVE_TEXT_UPDATE_KEY_H_ | 6 #define SERVICES_KEYBOARD_NATIVE_TEXT_UPDATE_KEY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
(...skipping 27 matching lines...) Expand all Loading... |
38 | 38 |
39 private: | 39 private: |
40 std::string text_; | 40 std::string text_; |
41 base::Callback<void(const TextUpdateKey&)> touch_up_callback_; | 41 base::Callback<void(const TextUpdateKey&)> touch_up_callback_; |
42 | 42 |
43 DISALLOW_COPY_AND_ASSIGN(TextUpdateKey); | 43 DISALLOW_COPY_AND_ASSIGN(TextUpdateKey); |
44 }; | 44 }; |
45 | 45 |
46 } // namespace keyboard | 46 } // namespace keyboard |
47 | 47 |
48 #endif // SERVICES_KEYBOARD_NATIVE_TEXT_UPDATE_KEY_H_ | 48 #endif // SERVICES_KEYBOARD_NATIVE_TEXT_UPDATE_KEY_H_ |
OLD | NEW |