| 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_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ |
| 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ | 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ |
| 7 | 7 |
| 8 #include "ui/aura/root_window_host.h" | 8 #include "ui/aura/root_window_host.h" |
| 9 #include "ui/views/views_export.h" | 9 #include "ui/views/views_export.h" |
| 10 #include "ui/views/widget/desktop_aura/desktop_root_window_host.h" | 10 #include "ui/views/widget/desktop_aura/desktop_root_window_host.h" |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 virtual void HandleMove() OVERRIDE; | 165 virtual void HandleMove() OVERRIDE; |
| 166 virtual void HandleWorkAreaChanged() OVERRIDE; | 166 virtual void HandleWorkAreaChanged() OVERRIDE; |
| 167 virtual void HandleVisibilityChanged(bool visible) OVERRIDE; | 167 virtual void HandleVisibilityChanged(bool visible) OVERRIDE; |
| 168 virtual void HandleClientSizeChanged(const gfx::Size& new_size) OVERRIDE; | 168 virtual void HandleClientSizeChanged(const gfx::Size& new_size) OVERRIDE; |
| 169 virtual void HandleFrameChanged() OVERRIDE; | 169 virtual void HandleFrameChanged() OVERRIDE; |
| 170 virtual void HandleNativeFocus(HWND last_focused_window) OVERRIDE; | 170 virtual void HandleNativeFocus(HWND last_focused_window) OVERRIDE; |
| 171 virtual void HandleNativeBlur(HWND focused_window) OVERRIDE; | 171 virtual void HandleNativeBlur(HWND focused_window) OVERRIDE; |
| 172 virtual bool HandleMouseEvent(const ui::MouseEvent& event) OVERRIDE; | 172 virtual bool HandleMouseEvent(const ui::MouseEvent& event) OVERRIDE; |
| 173 virtual bool HandleKeyEvent(const ui::KeyEvent& event) OVERRIDE; | 173 virtual bool HandleKeyEvent(const ui::KeyEvent& event) OVERRIDE; |
| 174 virtual bool HandleUntranslatedKeyEvent(const ui::KeyEvent& event) OVERRIDE; | 174 virtual bool HandleUntranslatedKeyEvent(const ui::KeyEvent& event) OVERRIDE; |
| 175 virtual bool HandleTouchEvent(const ui::TouchEvent& event) OVERRIDE; |
| 175 virtual bool HandleIMEMessage(UINT message, | 176 virtual bool HandleIMEMessage(UINT message, |
| 176 WPARAM w_param, | 177 WPARAM w_param, |
| 177 LPARAM l_param, | 178 LPARAM l_param, |
| 178 LRESULT* result) OVERRIDE; | 179 LRESULT* result) OVERRIDE; |
| 179 virtual void HandleInputLanguageChange(DWORD character_set, | 180 virtual void HandleInputLanguageChange(DWORD character_set, |
| 180 HKL input_language_id) OVERRIDE; | 181 HKL input_language_id) OVERRIDE; |
| 181 virtual bool HandlePaintAccelerated(const gfx::Rect& invalid_rect) OVERRIDE; | 182 virtual bool HandlePaintAccelerated(const gfx::Rect& invalid_rect) OVERRIDE; |
| 182 virtual void HandlePaint(gfx::Canvas* canvas) OVERRIDE; | 183 virtual void HandlePaint(gfx::Canvas* canvas) OVERRIDE; |
| 183 virtual void HandleScreenReaderDetected() OVERRIDE; | 184 virtual void HandleScreenReaderDetected() OVERRIDE; |
| 184 virtual bool HandleTooltipNotify(int w_param, | 185 virtual bool HandleTooltipNotify(int w_param, |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 scoped_ptr<DesktopCursorClient> cursor_client_; | 228 scoped_ptr<DesktopCursorClient> cursor_client_; |
| 228 | 229 |
| 229 scoped_ptr<DesktopDragDropClientWin> drag_drop_client_; | 230 scoped_ptr<DesktopDragDropClientWin> drag_drop_client_; |
| 230 | 231 |
| 231 DISALLOW_COPY_AND_ASSIGN(DesktopRootWindowHostWin); | 232 DISALLOW_COPY_AND_ASSIGN(DesktopRootWindowHostWin); |
| 232 }; | 233 }; |
| 233 | 234 |
| 234 } // namespace views | 235 } // namespace views |
| 235 | 236 |
| 236 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ | 237 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ |
| OLD | NEW |