| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ | 5 #ifndef UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ |
| 6 #define UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ | 6 #define UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 uint32 scan_code, | 89 uint32 scan_code, |
| 90 uint32 flags); | 90 uint32 flags); |
| 91 void OnKeyUp(uint32 vkey, | 91 void OnKeyUp(uint32 vkey, |
| 92 uint32 repeat_count, | 92 uint32 repeat_count, |
| 93 uint32 scan_code, | 93 uint32 scan_code, |
| 94 uint32 flags); | 94 uint32 flags); |
| 95 void OnChar(uint32 key_code, | 95 void OnChar(uint32 key_code, |
| 96 uint32 repeat_count, | 96 uint32 repeat_count, |
| 97 uint32 scan_code, | 97 uint32 scan_code, |
| 98 uint32 flags); | 98 uint32 flags); |
| 99 void OnCharForNextKeyEvent(uint32 key_code, |
| 100 uint32 repeat_count, |
| 101 uint32 scan_code, |
| 102 uint32 flags); |
| 99 void OnWindowActivated(bool repaint); | 103 void OnWindowActivated(bool repaint); |
| 100 void OnEdgeGesture(); | 104 void OnEdgeGesture(); |
| 101 void OnTouchDown(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); | 105 void OnTouchDown(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); |
| 102 void OnTouchUp(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); | 106 void OnTouchUp(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); |
| 103 void OnTouchMoved(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); | 107 void OnTouchMoved(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); |
| 104 void OnSetCursorPosAck(); | 108 void OnSetCursorPosAck(); |
| 105 | 109 |
| 106 // For Input Method support: | 110 // For Input Method support: |
| 107 ui::RemoteInputMethodPrivateWin* GetRemoteInputMethodPrivate(); | 111 ui::RemoteInputMethodPrivateWin* GetRemoteInputMethodPrivate(); |
| 108 void OnImeCandidatePopupChanged(bool visible); | 112 void OnImeCandidatePopupChanged(bool visible); |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 | 183 |
| 180 // Current size of this root window. | 184 // Current size of this root window. |
| 181 gfx::Size window_size_; | 185 gfx::Size window_size_; |
| 182 | 186 |
| 183 DISALLOW_COPY_AND_ASSIGN(RemoteWindowTreeHostWin); | 187 DISALLOW_COPY_AND_ASSIGN(RemoteWindowTreeHostWin); |
| 184 }; | 188 }; |
| 185 | 189 |
| 186 } // namespace aura | 190 } // namespace aura |
| 187 | 191 |
| 188 #endif // UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ | 192 #endif // UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ |
| OLD | NEW |