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 #include "ash/launcher/launcher_tooltip_manager.h" | 5 #include "ash/launcher/launcher_tooltip_manager.h" |
6 | 6 |
7 #include "ash/launcher/launcher_view.h" | 7 #include "ash/launcher/launcher_view.h" |
8 #include "ash/shelf/shelf_layout_manager.h" | |
8 #include "ash/shell.h" | 9 #include "ash/shell.h" |
9 #include "ash/shell_window_ids.h" | 10 #include "ash/shell_window_ids.h" |
10 #include "ash/wm/shelf_layout_manager.h" | 11 #include "ash/wm/session_state_controller.h" |
12 #include "ash/wm/session_state_observer.h" | |
Mr4D (OOO till 08-26)
2013/02/27 19:42:51
Are you sure you need these 2?
Harry McCleave
2013/03/01 04:31:19
Done.
| |
11 #include "ash/wm/window_animations.h" | 13 #include "ash/wm/window_animations.h" |
12 #include "base/bind.h" | 14 #include "base/bind.h" |
13 #include "base/message_loop.h" | 15 #include "base/message_loop.h" |
14 #include "base/time.h" | 16 #include "base/time.h" |
15 #include "base/timer.h" | 17 #include "base/timer.h" |
16 #include "ui/aura/root_window.h" | 18 #include "ui/aura/root_window.h" |
17 #include "ui/aura/window.h" | 19 #include "ui/aura/window.h" |
18 #include "ui/base/events/event.h" | 20 #include "ui/base/events/event.h" |
19 #include "ui/base/events/event_constants.h" | 21 #include "ui/base/events/event_constants.h" |
20 #include "ui/gfx/insets.h" | 22 #include "ui/gfx/insets.h" |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
352 | 354 |
353 gfx::NativeView native_view = widget_->GetNativeView(); | 355 gfx::NativeView native_view = widget_->GetNativeView(); |
354 views::corewm::SetWindowVisibilityAnimationType( | 356 views::corewm::SetWindowVisibilityAnimationType( |
355 native_view, views::corewm::WINDOW_VISIBILITY_ANIMATION_TYPE_VERTICAL); | 357 native_view, views::corewm::WINDOW_VISIBILITY_ANIMATION_TYPE_VERTICAL); |
356 views::corewm::SetWindowVisibilityAnimationTransition( | 358 views::corewm::SetWindowVisibilityAnimationTransition( |
357 native_view, views::corewm::ANIMATE_HIDE); | 359 native_view, views::corewm::ANIMATE_HIDE); |
358 } | 360 } |
359 | 361 |
360 } // namespace internal | 362 } // namespace internal |
361 } // namespace ash | 363 } // namespace ash |
OLD | NEW |