| 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 ASH_LAUNCHER_LAUNCHER_H_ | 5 #ifndef ASH_LAUNCHER_LAUNCHER_H_ |
| 6 #define ASH_LAUNCHER_LAUNCHER_H_ | 6 #define ASH_LAUNCHER_LAUNCHER_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/launcher/background_animator.h" | 9 #include "ash/launcher/background_animator.h" |
| 10 #include "ash/launcher/launcher_types.h" | 10 #include "ash/launcher/launcher_types.h" |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 | 123 |
| 124 views::Widget* GetDimmerWidgetForTest() { return dimmer_.get(); } | 124 views::Widget* GetDimmerWidgetForTest() { return dimmer_.get(); } |
| 125 | 125 |
| 126 aura::Window* window_container() { return window_container_; } | 126 aura::Window* window_container() { return window_container_; } |
| 127 | 127 |
| 128 // Called by the activation delegate, before the launcher is activated | 128 // Called by the activation delegate, before the launcher is activated |
| 129 // when no other windows are visible. | 129 // when no other windows are visible. |
| 130 void WillActivateAsFallback() { activating_as_fallback_ = true; } | 130 void WillActivateAsFallback() { activating_as_fallback_ = true; } |
| 131 | 131 |
| 132 // Overridden from views::WidgetObserver: | 132 // Overridden from views::WidgetObserver: |
| 133 virtual void OnWidgetActivationChanged(views::Widget* widget, | 133 void OnWidgetActivationChanged(views::Widget* widget, bool active) OVERRIDE; |
| 134 bool active) OVERRIDE; | |
| 135 | 134 |
| 136 private: | 135 private: |
| 137 class DelegateView; | 136 class DelegateView; |
| 138 | 137 |
| 139 // Widget hosting the view. | 138 // Widget hosting the view. |
| 140 scoped_ptr<views::Widget> widget_; | 139 scoped_ptr<views::Widget> widget_; |
| 141 scoped_ptr<views::Widget> dimmer_; | 140 scoped_ptr<views::Widget> dimmer_; |
| 142 | 141 |
| 143 aura::Window* window_container_; | 142 aura::Window* window_container_; |
| 144 | 143 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 160 | 159 |
| 161 // Used then activation is forced from the activation delegate. | 160 // Used then activation is forced from the activation delegate. |
| 162 bool activating_as_fallback_; | 161 bool activating_as_fallback_; |
| 163 | 162 |
| 164 DISALLOW_COPY_AND_ASSIGN(Launcher); | 163 DISALLOW_COPY_AND_ASSIGN(Launcher); |
| 165 }; | 164 }; |
| 166 | 165 |
| 167 } // namespace ash | 166 } // namespace ash |
| 168 | 167 |
| 169 #endif // ASH_LAUNCHER_LAUNCHER_H_ | 168 #endif // ASH_LAUNCHER_LAUNCHER_H_ |
| OLD | NEW |