| 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/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 virtual ui::EventSource* GetEventSource() OVERRIDE; | 119 virtual ui::EventSource* GetEventSource() OVERRIDE; |
| 120 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; | 120 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; |
| 121 virtual void Show() OVERRIDE; | 121 virtual void Show() OVERRIDE; |
| 122 virtual void Hide() OVERRIDE; | 122 virtual void Hide() OVERRIDE; |
| 123 virtual gfx::Rect GetBounds() const OVERRIDE; | 123 virtual gfx::Rect GetBounds() const OVERRIDE; |
| 124 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; | 124 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
| 125 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; | 125 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; |
| 126 virtual void SetCapture() OVERRIDE; | 126 virtual void SetCapture() OVERRIDE; |
| 127 virtual void ReleaseCapture() OVERRIDE; | 127 virtual void ReleaseCapture() OVERRIDE; |
| 128 virtual void PostNativeEvent(const base::NativeEvent& native_event) OVERRIDE; | 128 virtual void PostNativeEvent(const base::NativeEvent& native_event) OVERRIDE; |
| 129 virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE; | |
| 130 virtual void SetCursorNative(gfx::NativeCursor cursor) OVERRIDE; | 129 virtual void SetCursorNative(gfx::NativeCursor cursor) OVERRIDE; |
| 131 virtual void MoveCursorToNative(const gfx::Point& location) OVERRIDE; | 130 virtual void MoveCursorToNative(const gfx::Point& location) OVERRIDE; |
| 132 virtual void OnCursorVisibilityChangedNative(bool show) OVERRIDE; | 131 virtual void OnCursorVisibilityChangedNative(bool show) OVERRIDE; |
| 133 | 132 |
| 134 // ui::EventSource: | 133 // ui::EventSource: |
| 135 virtual ui::EventProcessor* GetEventProcessor() OVERRIDE; | 134 virtual ui::EventProcessor* GetEventProcessor() OVERRIDE; |
| 136 | 135 |
| 137 // ui::internal::RemoteInputMethodDelegateWin overrides: | 136 // ui::internal::RemoteInputMethodDelegateWin overrides: |
| 138 virtual void CancelComposition() OVERRIDE; | 137 virtual void CancelComposition() OVERRIDE; |
| 139 virtual void OnTextInputClientUpdated( | 138 virtual void OnTextInputClientUpdated( |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 | 184 |
| 186 // Current size of this root window. | 185 // Current size of this root window. |
| 187 gfx::Size window_size_; | 186 gfx::Size window_size_; |
| 188 | 187 |
| 189 DISALLOW_COPY_AND_ASSIGN(RemoteWindowTreeHostWin); | 188 DISALLOW_COPY_AND_ASSIGN(RemoteWindowTreeHostWin); |
| 190 }; | 189 }; |
| 191 | 190 |
| 192 } // namespace aura | 191 } // namespace aura |
| 193 | 192 |
| 194 #endif // UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ | 193 #endif // UI_AURA_REMOTE_WINDOW_TREE_HOST_WIN_H_ |
| OLD | NEW |