OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_STACK_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_STACK_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_STACK_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_STACK_VIEW_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 #include "base/basictypes.h" | 10 #include "base/macros.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "build/build_config.h" |
12 #include "chrome/browser/ui/panels/native_panel_stack_window.h" | 13 #include "chrome/browser/ui/panels/native_panel_stack_window.h" |
13 #include "ui/gfx/animation/animation_delegate.h" | 14 #include "ui/gfx/animation/animation_delegate.h" |
14 #include "ui/views/focus/widget_focus_manager.h" | 15 #include "ui/views/focus/widget_focus_manager.h" |
15 #include "ui/views/widget/widget_delegate.h" | 16 #include "ui/views/widget/widget_delegate.h" |
16 #include "ui/views/widget/widget_observer.h" | 17 #include "ui/views/widget/widget_observer.h" |
17 | 18 |
18 #if defined(OS_WIN) | 19 #if defined(OS_WIN) |
19 #include "chrome/browser/ui/views/panels/taskbar_window_thumbnailer_win.h" | 20 #include "chrome/browser/ui/views/panels/taskbar_window_thumbnailer_win.h" |
20 #include "ui/base/win/hwnd_subclass.h" | 21 #include "ui/base/win/hwnd_subclass.h" |
21 #endif | 22 #endif |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 bool bounds_updates_started_; | 137 bool bounds_updates_started_; |
137 BoundsUpdates bounds_updates_; | 138 BoundsUpdates bounds_updates_; |
138 | 139 |
139 // Used to animate the bounds changes at a synchronized pace. | 140 // Used to animate the bounds changes at a synchronized pace. |
140 scoped_ptr<gfx::LinearAnimation> bounds_animator_; | 141 scoped_ptr<gfx::LinearAnimation> bounds_animator_; |
141 | 142 |
142 DISALLOW_COPY_AND_ASSIGN(PanelStackView); | 143 DISALLOW_COPY_AND_ASSIGN(PanelStackView); |
143 }; | 144 }; |
144 | 145 |
145 #endif // CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_STACK_VIEW_H_ | 146 #endif // CHROME_BROWSER_UI_VIEWS_PANELS_PANEL_STACK_VIEW_H_ |
OLD | NEW |