| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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_SHELF_SHELF_LAYOUT_MANAGER_H_ | 5 #ifndef ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ |
| 6 #define ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ | 6 #define ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 // available work area from the top of the screen. | 219 // available work area from the top of the screen. |
| 220 void SetChromeVoxPanelHeight(int height); | 220 void SetChromeVoxPanelHeight(int height); |
| 221 | 221 |
| 222 private: | 222 private: |
| 223 class AutoHideEventFilter; | 223 class AutoHideEventFilter; |
| 224 class UpdateShelfObserver; | 224 class UpdateShelfObserver; |
| 225 friend class AshPopupAlignmentDelegateTest; | 225 friend class AshPopupAlignmentDelegateTest; |
| 226 friend class ash::ScreenAsh; | 226 friend class ash::ScreenAsh; |
| 227 friend class PanelLayoutManagerTest; | 227 friend class PanelLayoutManagerTest; |
| 228 friend class ShelfLayoutManagerTest; | 228 friend class ShelfLayoutManagerTest; |
| 229 friend class ToastManagerTest; |
| 229 FRIEND_TEST_ALL_PREFIXES(ash::AshPopupAlignmentDelegateTest, AutoHide); | 230 FRIEND_TEST_ALL_PREFIXES(ash::AshPopupAlignmentDelegateTest, AutoHide); |
| 230 FRIEND_TEST_ALL_PREFIXES(ash::WebNotificationTrayTest, PopupAndFullscreen); | 231 FRIEND_TEST_ALL_PREFIXES(ash::WebNotificationTrayTest, PopupAndFullscreen); |
| 231 | 232 |
| 232 struct TargetBounds { | 233 struct TargetBounds { |
| 233 TargetBounds(); | 234 TargetBounds(); |
| 234 ~TargetBounds(); | 235 ~TargetBounds(); |
| 235 | 236 |
| 236 float opacity; | 237 float opacity; |
| 237 float status_opacity; | 238 float status_opacity; |
| 238 gfx::Rect shelf_bounds_in_root; | 239 gfx::Rect shelf_bounds_in_root; |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 | 412 |
| 412 // The show hide animation duration override or 0 for default. | 413 // The show hide animation duration override or 0 for default. |
| 413 int duration_override_in_ms_; | 414 int duration_override_in_ms_; |
| 414 | 415 |
| 415 DISALLOW_COPY_AND_ASSIGN(ShelfLayoutManager); | 416 DISALLOW_COPY_AND_ASSIGN(ShelfLayoutManager); |
| 416 }; | 417 }; |
| 417 | 418 |
| 418 } // namespace ash | 419 } // namespace ash |
| 419 | 420 |
| 420 #endif // ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ | 421 #endif // ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ |
| OLD | NEW |