Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Side by Side Diff: ui/aura/remote_window_tree_host_win.h

Issue 1267483003: Combine the WM_CHAR with WM_KEY* for key event flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add --disable-merge-key-char-events flag. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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);
99 void OnWindowActivated(bool repaint); 100 void OnWindowActivated(bool repaint);
100 void OnEdgeGesture(); 101 void OnEdgeGesture();
101 void OnTouchDown(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); 102 void OnTouchDown(int32 x, int32 y, uint64 timestamp, uint32 pointer_id);
102 void OnTouchUp(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); 103 void OnTouchUp(int32 x, int32 y, uint64 timestamp, uint32 pointer_id);
103 void OnTouchMoved(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); 104 void OnTouchMoved(int32 x, int32 y, uint64 timestamp, uint32 pointer_id);
104 void OnSetCursorPosAck(); 105 void OnSetCursorPosAck();
105 106
106 // For Input Method support: 107 // For Input Method support:
107 ui::RemoteInputMethodPrivateWin* GetRemoteInputMethodPrivate(); 108 ui::RemoteInputMethodPrivateWin* GetRemoteInputMethodPrivate();
108 void OnImeCandidatePopupChanged(bool visible); 109 void OnImeCandidatePopupChanged(bool visible);
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 180
180 // Current size of this root window. 181 // Current size of this root window.
181 gfx::Size window_size_; 182 gfx::Size window_size_;
182 183
183 DISALLOW_COPY_AND_ASSIGN(RemoteWindowTreeHostWin); 184 DISALLOW_COPY_AND_ASSIGN(RemoteWindowTreeHostWin);
184 }; 185 };
185 186
186 } // namespace aura 187 } // namespace aura
187 188
188 #endif // UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ 189 #endif // UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698