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" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/string16.h" | 12 #include "base/strings/string16.h" |
13 #include "ui/aura/root_window_host.h" | 13 #include "ui/aura/root_window_host.h" |
14 #include "ui/base/events/event_constants.h" | 14 #include "ui/base/events/event_constants.h" |
15 #include "ui/gfx/native_widget_types.h" | 15 #include "ui/gfx/native_widget_types.h" |
16 | 16 |
17 namespace base { | 17 namespace base { |
18 class FilePath; | 18 class FilePath; |
19 } | 19 } |
20 | 20 |
21 namespace ui { | 21 namespace ui { |
22 class ViewProp; | 22 class ViewProp; |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 // Set to true if we need to ignore mouse messages until the SetCursorPos | 198 // Set to true if we need to ignore mouse messages until the SetCursorPos |
199 // operation is acked by the viewer. | 199 // operation is acked by the viewer. |
200 bool ignore_mouse_moves_until_set_cursor_ack_; | 200 bool ignore_mouse_moves_until_set_cursor_ack_; |
201 | 201 |
202 DISALLOW_COPY_AND_ASSIGN(RemoteRootWindowHostWin); | 202 DISALLOW_COPY_AND_ASSIGN(RemoteRootWindowHostWin); |
203 }; | 203 }; |
204 | 204 |
205 } // namespace aura | 205 } // namespace aura |
206 | 206 |
207 #endif // UI_AURA_REMOTE_ROOT_WINDOW_HOST_WIN_H_ | 207 #endif // UI_AURA_REMOTE_ROOT_WINDOW_HOST_WIN_H_ |
OLD | NEW |