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_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/callback.h" | 10 #include "base/callback.h" |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 virtual gfx::Insets GetInsets() const OVERRIDE; | 225 virtual gfx::Insets GetInsets() const OVERRIDE; |
226 virtual void SetInsets(const gfx::Insets& insets) OVERRIDE; | 226 virtual void SetInsets(const gfx::Insets& insets) OVERRIDE; |
227 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; | 227 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; |
228 virtual void SetCapture() OVERRIDE; | 228 virtual void SetCapture() OVERRIDE; |
229 virtual void ReleaseCapture() OVERRIDE; | 229 virtual void ReleaseCapture() OVERRIDE; |
230 virtual bool QueryMouseLocation(gfx::Point* location_return) OVERRIDE; | 230 virtual bool QueryMouseLocation(gfx::Point* location_return) OVERRIDE; |
231 virtual bool ConfineCursorToRootWindow() OVERRIDE; | 231 virtual bool ConfineCursorToRootWindow() OVERRIDE; |
232 virtual void UnConfineCursor() OVERRIDE; | 232 virtual void UnConfineCursor() OVERRIDE; |
233 virtual void PostNativeEvent(const base::NativeEvent& native_event) OVERRIDE; | 233 virtual void PostNativeEvent(const base::NativeEvent& native_event) OVERRIDE; |
234 virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE; | 234 virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE; |
| 235 virtual void PrepareForShutdown() OVERRIDE; |
235 virtual void SetCursorNative(gfx::NativeCursor cursor) OVERRIDE; | 236 virtual void SetCursorNative(gfx::NativeCursor cursor) OVERRIDE; |
236 virtual void MoveCursorToNative(const gfx::Point& location) OVERRIDE; | 237 virtual void MoveCursorToNative(const gfx::Point& location) OVERRIDE; |
237 virtual void OnCursorVisibilityChangedNative(bool show) OVERRIDE; | 238 virtual void OnCursorVisibilityChangedNative(bool show) OVERRIDE; |
238 | 239 |
239 // ui::EventSource: | 240 // ui::EventSource: |
240 virtual ui::EventProcessor* GetEventProcessor() OVERRIDE; | 241 virtual ui::EventProcessor* GetEventProcessor() OVERRIDE; |
241 | 242 |
242 // ui::internal::RemoteInputMethodDelegateWin overrides: | 243 // ui::internal::RemoteInputMethodDelegateWin overrides: |
243 virtual void CancelComposition() OVERRIDE; | 244 virtual void CancelComposition() OVERRIDE; |
244 virtual void OnTextInputClientUpdated( | 245 virtual void OnTextInputClientUpdated( |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 | 299 |
299 // Current size of this root window. | 300 // Current size of this root window. |
300 gfx::Size window_size_; | 301 gfx::Size window_size_; |
301 | 302 |
302 DISALLOW_COPY_AND_ASSIGN(RemoteWindowTreeHostWin); | 303 DISALLOW_COPY_AND_ASSIGN(RemoteWindowTreeHostWin); |
303 }; | 304 }; |
304 | 305 |
305 } // namespace aura | 306 } // namespace aura |
306 | 307 |
307 #endif // UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ | 308 #endif // UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ |
OLD | NEW |