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_NATIVE_WIDGET_AURA_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ |
6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ | 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ |
7 | 7 |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "ui/aura/client/focus_change_observer.h" | 9 #include "ui/aura/client/focus_change_observer.h" |
10 #include "ui/aura/window_delegate.h" | 10 #include "ui/aura/window_delegate.h" |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 void SetCursor(gfx::NativeCursor cursor) override; | 166 void SetCursor(gfx::NativeCursor cursor) override; |
167 bool IsMouseEventsEnabled() const override; | 167 bool IsMouseEventsEnabled() const override; |
168 void ClearNativeFocus() override; | 168 void ClearNativeFocus() override; |
169 gfx::Rect GetWorkAreaBoundsInScreen() const override; | 169 gfx::Rect GetWorkAreaBoundsInScreen() const override; |
170 Widget::MoveLoopResult RunMoveLoop( | 170 Widget::MoveLoopResult RunMoveLoop( |
171 const gfx::Vector2d& drag_offset, | 171 const gfx::Vector2d& drag_offset, |
172 Widget::MoveLoopSource source, | 172 Widget::MoveLoopSource source, |
173 Widget::MoveLoopEscapeBehavior escape_behavior) override; | 173 Widget::MoveLoopEscapeBehavior escape_behavior) override; |
174 void EndMoveLoop() override; | 174 void EndMoveLoop() override; |
175 void SetVisibilityChangedAnimationsEnabled(bool value) override; | 175 void SetVisibilityChangedAnimationsEnabled(bool value) override; |
| 176 void SetVisibilityAnimationDuration(const base::TimeDelta& duration) override; |
| 177 void SetVisibilityAnimationTransition( |
| 178 Widget::VisibilityTransition transition) override; |
176 ui::NativeTheme* GetNativeTheme() const override; | 179 ui::NativeTheme* GetNativeTheme() const override; |
177 void OnRootViewLayout() override; | 180 void OnRootViewLayout() override; |
178 bool IsTranslucentWindowOpacitySupported() const override; | 181 bool IsTranslucentWindowOpacitySupported() const override; |
179 void OnSizeConstraintsChanged() override; | 182 void OnSizeConstraintsChanged() override; |
180 void RepostNativeEvent(gfx::NativeEvent native_event) override; | 183 void RepostNativeEvent(gfx::NativeEvent native_event) override; |
181 | 184 |
182 // Overridden from aura::WindowDelegate: | 185 // Overridden from aura::WindowDelegate: |
183 gfx::Size GetMinimumSize() const override; | 186 gfx::Size GetMinimumSize() const override; |
184 gfx::Size GetMaximumSize() const override; | 187 gfx::Size GetMaximumSize() const override; |
185 void OnBoundsChanged(const gfx::Rect& old_bounds, | 188 void OnBoundsChanged(const gfx::Rect& old_bounds, |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 // The following factory is used for calls to close the NativeWidgetAura | 314 // The following factory is used for calls to close the NativeWidgetAura |
312 // instance. | 315 // instance. |
313 base::WeakPtrFactory<DesktopNativeWidgetAura> close_widget_factory_; | 316 base::WeakPtrFactory<DesktopNativeWidgetAura> close_widget_factory_; |
314 | 317 |
315 DISALLOW_COPY_AND_ASSIGN(DesktopNativeWidgetAura); | 318 DISALLOW_COPY_AND_ASSIGN(DesktopNativeWidgetAura); |
316 }; | 319 }; |
317 | 320 |
318 } // namespace views | 321 } // namespace views |
319 | 322 |
320 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ | 323 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ |
OLD | NEW |