| 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_WINDOW_TREE_HOST_WIN_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ |
| 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ | 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ |
| 7 | 7 |
| 8 #include "ui/aura/window_tree_host.h" | 8 #include "ui/aura/window_tree_host.h" |
| 9 #include "ui/views/views_export.h" | 9 #include "ui/views/views_export.h" |
| 10 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h" | 10 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h" |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 WPARAM w_param, | 184 WPARAM w_param, |
| 185 LPARAM l_param, | 185 LPARAM l_param, |
| 186 LRESULT* result) OVERRIDE; | 186 LRESULT* result) OVERRIDE; |
| 187 virtual void HandleInputLanguageChange(DWORD character_set, | 187 virtual void HandleInputLanguageChange(DWORD character_set, |
| 188 HKL input_language_id) OVERRIDE; | 188 HKL input_language_id) OVERRIDE; |
| 189 virtual bool HandlePaintAccelerated(const gfx::Rect& invalid_rect) OVERRIDE; | 189 virtual bool HandlePaintAccelerated(const gfx::Rect& invalid_rect) OVERRIDE; |
| 190 virtual void HandlePaint(gfx::Canvas* canvas) OVERRIDE; | 190 virtual void HandlePaint(gfx::Canvas* canvas) OVERRIDE; |
| 191 virtual bool HandleTooltipNotify(int w_param, | 191 virtual bool HandleTooltipNotify(int w_param, |
| 192 NMHDR* l_param, | 192 NMHDR* l_param, |
| 193 LRESULT* l_result) OVERRIDE; | 193 LRESULT* l_result) OVERRIDE; |
| 194 virtual void HandleTooltipMouseMove(UINT message, | |
| 195 WPARAM w_param, | |
| 196 LPARAM l_param) OVERRIDE; | |
| 197 virtual void HandleMenuLoop(bool in_menu_loop) OVERRIDE; | 194 virtual void HandleMenuLoop(bool in_menu_loop) OVERRIDE; |
| 198 virtual bool PreHandleMSG(UINT message, | 195 virtual bool PreHandleMSG(UINT message, |
| 199 WPARAM w_param, | 196 WPARAM w_param, |
| 200 LPARAM l_param, | 197 LPARAM l_param, |
| 201 LRESULT* result) OVERRIDE; | 198 LRESULT* result) OVERRIDE; |
| 202 virtual void PostHandleMSG(UINT message, | 199 virtual void PostHandleMSG(UINT message, |
| 203 WPARAM w_param, | 200 WPARAM w_param, |
| 204 LPARAM l_param) OVERRIDE; | 201 LPARAM l_param) OVERRIDE; |
| 205 virtual bool HandleScrollEvent(const ui::ScrollEvent& event) OVERRIDE; | 202 virtual bool HandleScrollEvent(const ui::ScrollEvent& event) OVERRIDE; |
| 206 virtual void HandleWindowSizeChanging() OVERRIDE; | 203 virtual void HandleWindowSizeChanging() OVERRIDE; |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 static bool is_cursor_visible_; | 263 static bool is_cursor_visible_; |
| 267 | 264 |
| 268 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; | 265 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; |
| 269 | 266 |
| 270 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); | 267 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); |
| 271 }; | 268 }; |
| 272 | 269 |
| 273 } // namespace views | 270 } // namespace views |
| 274 | 271 |
| 275 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ | 272 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ |
| OLD | NEW |