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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 uint32 scan_code, | 90 uint32 scan_code, |
91 uint32 flags); | 91 uint32 flags); |
92 void OnKeyUp(uint32 vkey, | 92 void OnKeyUp(uint32 vkey, |
93 uint32 repeat_count, | 93 uint32 repeat_count, |
94 uint32 scan_code, | 94 uint32 scan_code, |
95 uint32 flags); | 95 uint32 flags); |
96 void OnChar(uint32 key_code, | 96 void OnChar(uint32 key_code, |
97 uint32 repeat_count, | 97 uint32 repeat_count, |
98 uint32 scan_code, | 98 uint32 scan_code, |
99 uint32 flags); | 99 uint32 flags); |
100 void OnWindowActivated(); | 100 void OnWindowActivated(bool repaint); |
101 void OnEdgeGesture(); | 101 void OnEdgeGesture(); |
102 void OnTouchDown(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); | 102 void OnTouchDown(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); |
103 void OnTouchUp(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); | 103 void OnTouchUp(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); |
104 void OnTouchMoved(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); | 104 void OnTouchMoved(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); |
105 void OnSetCursorPosAck(); | 105 void OnSetCursorPosAck(); |
106 | 106 |
107 // For Input Method support: | 107 // For Input Method support: |
108 ui::RemoteInputMethodPrivateWin* GetRemoteInputMethodPrivate(); | 108 ui::RemoteInputMethodPrivateWin* GetRemoteInputMethodPrivate(); |
109 void OnImeCandidatePopupChanged(bool visible); | 109 void OnImeCandidatePopupChanged(bool visible); |
110 void OnImeCompositionChanged( | 110 void OnImeCompositionChanged( |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 | 184 |
185 // Current size of this root window. | 185 // Current size of this root window. |
186 gfx::Size window_size_; | 186 gfx::Size window_size_; |
187 | 187 |
188 DISALLOW_COPY_AND_ASSIGN(RemoteWindowTreeHostWin); | 188 DISALLOW_COPY_AND_ASSIGN(RemoteWindowTreeHostWin); |
189 }; | 189 }; |
190 | 190 |
191 } // namespace aura | 191 } // namespace aura |
192 | 192 |
193 #endif // UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ | 193 #endif // UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ |
OLD | NEW |