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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 // WindowTreeHost overrides: | 224 // WindowTreeHost overrides: |
225 virtual ui::EventSource* GetEventSource() OVERRIDE; | 225 virtual ui::EventSource* GetEventSource() OVERRIDE; |
226 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; | 226 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; |
227 virtual void Show() OVERRIDE; | 227 virtual void Show() OVERRIDE; |
228 virtual void Hide() OVERRIDE; | 228 virtual void Hide() OVERRIDE; |
229 virtual gfx::Rect GetBounds() const OVERRIDE; | 229 virtual gfx::Rect GetBounds() const OVERRIDE; |
230 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; | 230 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
231 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; | 231 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; |
232 virtual void SetCapture() OVERRIDE; | 232 virtual void SetCapture() OVERRIDE; |
233 virtual void ReleaseCapture() OVERRIDE; | 233 virtual void ReleaseCapture() OVERRIDE; |
234 virtual bool QueryMouseLocation(gfx::Point* location_return) OVERRIDE; | |
235 virtual void PostNativeEvent(const base::NativeEvent& native_event) OVERRIDE; | 234 virtual void PostNativeEvent(const base::NativeEvent& native_event) OVERRIDE; |
236 virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE; | 235 virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE; |
237 virtual void SetCursorNative(gfx::NativeCursor cursor) OVERRIDE; | 236 virtual void SetCursorNative(gfx::NativeCursor cursor) OVERRIDE; |
238 virtual void MoveCursorToNative(const gfx::Point& location) OVERRIDE; | 237 virtual void MoveCursorToNative(const gfx::Point& location) OVERRIDE; |
239 virtual void OnCursorVisibilityChangedNative(bool show) OVERRIDE; | 238 virtual void OnCursorVisibilityChangedNative(bool show) OVERRIDE; |
240 | 239 |
241 // ui::EventSource: | 240 // ui::EventSource: |
242 virtual ui::EventProcessor* GetEventProcessor() OVERRIDE; | 241 virtual ui::EventProcessor* GetEventProcessor() OVERRIDE; |
243 | 242 |
244 // ui::internal::RemoteInputMethodDelegateWin overrides: | 243 // ui::internal::RemoteInputMethodDelegateWin overrides: |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 | 299 |
301 // Current size of this root window. | 300 // Current size of this root window. |
302 gfx::Size window_size_; | 301 gfx::Size window_size_; |
303 | 302 |
304 DISALLOW_COPY_AND_ASSIGN(RemoteWindowTreeHostWin); | 303 DISALLOW_COPY_AND_ASSIGN(RemoteWindowTreeHostWin); |
305 }; | 304 }; |
306 | 305 |
307 } // namespace aura | 306 } // namespace aura |
308 | 307 |
309 #endif // UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ | 308 #endif // UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ |
OLD | NEW |