| 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_NATIVE_WIDGET_AURA_H_ | 5 #ifndef UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
| 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_vector.h" | 8 #include "base/memory/scoped_vector.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "ui/aura/client/activation_delegate.h" | 10 #include "ui/aura/client/activation_delegate.h" |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 const gfx::Vector2d& drag_offset) OVERRIDE; | 124 const gfx::Vector2d& drag_offset) OVERRIDE; |
| 125 virtual void EndMoveLoop() OVERRIDE; | 125 virtual void EndMoveLoop() OVERRIDE; |
| 126 virtual void SetVisibilityChangedAnimationsEnabled(bool value) OVERRIDE; | 126 virtual void SetVisibilityChangedAnimationsEnabled(bool value) OVERRIDE; |
| 127 virtual ui::NativeTheme* GetNativeTheme() const OVERRIDE; | 127 virtual ui::NativeTheme* GetNativeTheme() const OVERRIDE; |
| 128 | 128 |
| 129 // Overridden from views::InputMethodDelegate: | 129 // Overridden from views::InputMethodDelegate: |
| 130 virtual void DispatchKeyEventPostIME(const ui::KeyEvent& key) OVERRIDE; | 130 virtual void DispatchKeyEventPostIME(const ui::KeyEvent& key) OVERRIDE; |
| 131 | 131 |
| 132 // Overridden from aura::WindowDelegate: | 132 // Overridden from aura::WindowDelegate: |
| 133 virtual gfx::Size GetMinimumSize() const OVERRIDE; | 133 virtual gfx::Size GetMinimumSize() const OVERRIDE; |
| 134 virtual gfx::Size GetMaximumSize() const OVERRIDE; |
| 134 virtual void OnBoundsChanged(const gfx::Rect& old_bounds, | 135 virtual void OnBoundsChanged(const gfx::Rect& old_bounds, |
| 135 const gfx::Rect& new_bounds) OVERRIDE; | 136 const gfx::Rect& new_bounds) OVERRIDE; |
| 136 virtual void OnFocus(aura::Window* old_focused_window) OVERRIDE; | 137 virtual void OnFocus(aura::Window* old_focused_window) OVERRIDE; |
| 137 virtual void OnBlur() OVERRIDE; | 138 virtual void OnBlur() OVERRIDE; |
| 138 virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE; | 139 virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE; |
| 139 virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE; | 140 virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE; |
| 140 virtual bool ShouldDescendIntoChildForEventHandling( | 141 virtual bool ShouldDescendIntoChildForEventHandling( |
| 141 aura::Window* child, | 142 aura::Window* child, |
| 142 const gfx::Point& location) OVERRIDE; | 143 const gfx::Point& location) OVERRIDE; |
| 143 virtual bool CanFocus() OVERRIDE; | 144 virtual bool CanFocus() OVERRIDE; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 | 208 |
| 208 scoped_ptr<DropHelper> drop_helper_; | 209 scoped_ptr<DropHelper> drop_helper_; |
| 209 int last_drop_operation_; | 210 int last_drop_operation_; |
| 210 | 211 |
| 211 DISALLOW_COPY_AND_ASSIGN(NativeWidgetAura); | 212 DISALLOW_COPY_AND_ASSIGN(NativeWidgetAura); |
| 212 }; | 213 }; |
| 213 | 214 |
| 214 } // namespace views | 215 } // namespace views |
| 215 | 216 |
| 216 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 217 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
| OLD | NEW |