| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 uint32 flags); | 184 uint32 flags); |
| 185 void OnKeyUp(uint32 vkey, | 185 void OnKeyUp(uint32 vkey, |
| 186 uint32 repeat_count, | 186 uint32 repeat_count, |
| 187 uint32 scan_code, | 187 uint32 scan_code, |
| 188 uint32 flags); | 188 uint32 flags); |
| 189 void OnChar(uint32 key_code, | 189 void OnChar(uint32 key_code, |
| 190 uint32 repeat_count, | 190 uint32 repeat_count, |
| 191 uint32 scan_code, | 191 uint32 scan_code, |
| 192 uint32 flags); | 192 uint32 flags); |
| 193 void OnWindowActivated(); | 193 void OnWindowActivated(); |
| 194 void OnEdgeGesture(); |
| 194 void OnTouchDown(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); | 195 void OnTouchDown(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); |
| 195 void OnTouchUp(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); | 196 void OnTouchUp(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); |
| 196 void OnTouchMoved(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); | 197 void OnTouchMoved(int32 x, int32 y, uint64 timestamp, uint32 pointer_id); |
| 197 void OnFileSaveAsDone(bool success, | 198 void OnFileSaveAsDone(bool success, |
| 198 const base::FilePath& filename, | 199 const base::FilePath& filename, |
| 199 int filter_index); | 200 int filter_index); |
| 200 void OnFileOpenDone(bool success, const base::FilePath& filename); | 201 void OnFileOpenDone(bool success, const base::FilePath& filename); |
| 201 void OnMultiFileOpenDone(bool success, | 202 void OnMultiFileOpenDone(bool success, |
| 202 const std::vector<base::FilePath>& files); | 203 const std::vector<base::FilePath>& files); |
| 203 void OnSelectFolderDone(bool success, const base::FilePath& folder); | 204 void OnSelectFolderDone(bool success, const base::FilePath& folder); |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 | 300 |
| 300 // Current size of this root window. | 301 // Current size of this root window. |
| 301 gfx::Size window_size_; | 302 gfx::Size window_size_; |
| 302 | 303 |
| 303 DISALLOW_COPY_AND_ASSIGN(RemoteWindowTreeHostWin); | 304 DISALLOW_COPY_AND_ASSIGN(RemoteWindowTreeHostWin); |
| 304 }; | 305 }; |
| 305 | 306 |
| 306 } // namespace aura | 307 } // namespace aura |
| 307 | 308 |
| 308 #endif // UI_AURA_REMOTE_ROOT_WINDOW_HOST_WIN_H_ | 309 #endif // UI_AURA_REMOTE_ROOT_WINDOW_HOST_WIN_H_ |
| OLD | NEW |