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

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

Issue 546503002: Notify the Chrome browser process about the window being activated from the viewer process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Code review comments Created 6 years, 3 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
« no previous file with comments | « no previous file | ui/aura/remote_window_tree_host_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « no previous file | ui/aura/remote_window_tree_host_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698