| 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_ROOT_WINDOW_HOST_WIN_H_ | 5 #ifndef UI_AURA_REMOTE_ROOT_WINDOW_HOST_WIN_H_ |
| 6 #define UI_AURA_REMOTE_ROOT_WINDOW_HOST_WIN_H_ | 6 #define UI_AURA_REMOTE_ROOT_WINDOW_HOST_WIN_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 uint32 scan_code, | 147 uint32 scan_code, |
| 148 uint32 flags); | 148 uint32 flags); |
| 149 void OnKeyUp(uint32 vkey, | 149 void OnKeyUp(uint32 vkey, |
| 150 uint32 repeat_count, | 150 uint32 repeat_count, |
| 151 uint32 scan_code, | 151 uint32 scan_code, |
| 152 uint32 flags); | 152 uint32 flags); |
| 153 void OnChar(uint32 key_code, | 153 void OnChar(uint32 key_code, |
| 154 uint32 repeat_count, | 154 uint32 repeat_count, |
| 155 uint32 scan_code, | 155 uint32 scan_code, |
| 156 uint32 flags); | 156 uint32 flags); |
| 157 void OnVisibilityChanged(bool visible); | 157 void OnWindowActivated(); |
| 158 void OnTouchDown(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); | 158 void OnTouchDown(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); |
| 159 void OnTouchUp(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); | 159 void OnTouchUp(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); |
| 160 void OnTouchMoved(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); | 160 void OnTouchMoved(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); |
| 161 void OnFileSaveAsDone(bool success, | 161 void OnFileSaveAsDone(bool success, |
| 162 const base::FilePath& filename, | 162 const base::FilePath& filename, |
| 163 int filter_index); | 163 int filter_index); |
| 164 void OnFileOpenDone(bool success, const base::FilePath& filename); | 164 void OnFileOpenDone(bool success, const base::FilePath& filename); |
| 165 void OnMultiFileOpenDone(bool success, | 165 void OnMultiFileOpenDone(bool success, |
| 166 const std::vector<base::FilePath>& files); | 166 const std::vector<base::FilePath>& files); |
| 167 void OnSelectFolderDone(bool success, const base::FilePath& folder); | 167 void OnSelectFolderDone(bool success, const base::FilePath& folder); |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 | 224 |
| 225 // Tracking last click event for synthetically generated mouse events. | 225 // Tracking last click event for synthetically generated mouse events. |
| 226 scoped_ptr<ui::MouseEvent> last_mouse_click_event_; | 226 scoped_ptr<ui::MouseEvent> last_mouse_click_event_; |
| 227 | 227 |
| 228 DISALLOW_COPY_AND_ASSIGN(RemoteRootWindowHostWin); | 228 DISALLOW_COPY_AND_ASSIGN(RemoteRootWindowHostWin); |
| 229 }; | 229 }; |
| 230 | 230 |
| 231 } // namespace aura | 231 } // namespace aura |
| 232 | 232 |
| 233 #endif // UI_AURA_REMOTE_ROOT_WINDOW_HOST_WIN_H_ | 233 #endif // UI_AURA_REMOTE_ROOT_WINDOW_HOST_WIN_H_ |
| OLD | NEW |