| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_PANELS_PANEL_BROWSER_WINDOW_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_GTK_H_ |
| 6 #define CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_GTK_H_ | 6 #define CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_GTK_H_ |
| 7 | 7 |
| 8 #include "base/message_loop.h" |
| 8 #include "chrome/browser/ui/gtk/browser_window_gtk.h" | 9 #include "chrome/browser/ui/gtk/browser_window_gtk.h" |
| 9 #include "chrome/browser/ui/gtk/menu_gtk.h" | 10 #include "chrome/browser/ui/gtk/menu_gtk.h" |
| 10 #include "chrome/browser/ui/panels/native_panel.h" | 11 #include "chrome/browser/ui/panels/native_panel.h" |
| 11 #include "ui/base/animation/animation_delegate.h" | 12 #include "ui/base/animation/animation_delegate.h" |
| 12 | 13 |
| 13 class Panel; | 14 class Panel; |
| 14 class PanelSettingsMenuModel; | 15 class PanelSettingsMenuModel; |
| 15 class NativePanelTestingGtk; | 16 class NativePanelTestingGtk; |
| 16 | 17 |
| 17 namespace ui { | 18 namespace ui { |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 base::Time disableMinimizeUntilTime_; | 177 base::Time disableMinimizeUntilTime_; |
| 177 | 178 |
| 178 // Used to animate the bounds change. | 179 // Used to animate the bounds change. |
| 179 scoped_ptr<ui::SlideAnimation> bounds_animator_; | 180 scoped_ptr<ui::SlideAnimation> bounds_animator_; |
| 180 gfx::Rect animation_start_bounds_; | 181 gfx::Rect animation_start_bounds_; |
| 181 | 182 |
| 182 DISALLOW_COPY_AND_ASSIGN(PanelBrowserWindowGtk); | 183 DISALLOW_COPY_AND_ASSIGN(PanelBrowserWindowGtk); |
| 183 }; | 184 }; |
| 184 | 185 |
| 185 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_GTK_H_ | 186 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |