| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 virtual void Activate() OVERRIDE; | 72 virtual void Activate() OVERRIDE; |
| 73 virtual void Deactivate() OVERRIDE; | 73 virtual void Deactivate() OVERRIDE; |
| 74 virtual bool IsActive() const OVERRIDE; | 74 virtual bool IsActive() const OVERRIDE; |
| 75 virtual void Maximize() OVERRIDE; | 75 virtual void Maximize() OVERRIDE; |
| 76 virtual void Minimize() OVERRIDE; | 76 virtual void Minimize() OVERRIDE; |
| 77 virtual void Restore() OVERRIDE; | 77 virtual void Restore() OVERRIDE; |
| 78 virtual bool IsMaximized() const OVERRIDE; | 78 virtual bool IsMaximized() const OVERRIDE; |
| 79 virtual bool IsMinimized() const OVERRIDE; | 79 virtual bool IsMinimized() const OVERRIDE; |
| 80 virtual bool HasCapture() const OVERRIDE; | 80 virtual bool HasCapture() const OVERRIDE; |
| 81 virtual void SetAlwaysOnTop(bool always_on_top) OVERRIDE; | 81 virtual void SetAlwaysOnTop(bool always_on_top) OVERRIDE; |
| 82 virtual void SetInterceptAllKeys(bool want_all_keys) OVERRIDE; |
| 82 virtual bool IsAlwaysOnTop() const OVERRIDE; | 83 virtual bool IsAlwaysOnTop() const OVERRIDE; |
| 83 virtual void SetVisibleOnAllWorkspaces(bool always_visible) OVERRIDE; | 84 virtual void SetVisibleOnAllWorkspaces(bool always_visible) OVERRIDE; |
| 84 virtual bool SetWindowTitle(const base::string16& title) OVERRIDE; | 85 virtual bool SetWindowTitle(const base::string16& title) OVERRIDE; |
| 85 virtual void ClearNativeFocus() OVERRIDE; | 86 virtual void ClearNativeFocus() OVERRIDE; |
| 86 virtual Widget::MoveLoopResult RunMoveLoop( | 87 virtual Widget::MoveLoopResult RunMoveLoop( |
| 87 const gfx::Vector2d& drag_offset, | 88 const gfx::Vector2d& drag_offset, |
| 88 Widget::MoveLoopSource source, | 89 Widget::MoveLoopSource source, |
| 89 Widget::MoveLoopEscapeBehavior escape_behavior) OVERRIDE; | 90 Widget::MoveLoopEscapeBehavior escape_behavior) OVERRIDE; |
| 90 virtual void EndMoveLoop() OVERRIDE; | 91 virtual void EndMoveLoop() OVERRIDE; |
| 91 virtual void SetVisibilityChangedAnimationsEnabled(bool value) OVERRIDE; | 92 virtual void SetVisibilityChangedAnimationsEnabled(bool value) OVERRIDE; |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 static bool is_cursor_visible_; | 267 static bool is_cursor_visible_; |
| 267 | 268 |
| 268 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; | 269 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; |
| 269 | 270 |
| 270 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); | 271 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); |
| 271 }; | 272 }; |
| 272 | 273 |
| 273 } // namespace views | 274 } // namespace views |
| 274 | 275 |
| 275 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ | 276 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ |
| OLD | NEW |