| Index: chrome/browser/ui/panels/stacked_panel_collection.h
|
| diff --git a/chrome/browser/ui/panels/stacked_panel_collection.h b/chrome/browser/ui/panels/stacked_panel_collection.h
|
| index 2ac9b1182daab803d9e45d0f1b94ef70154ecf9a..404077c02ab480d0297d912404a360822c422773 100644
|
| --- a/chrome/browser/ui/panels/stacked_panel_collection.h
|
| +++ b/chrome/browser/ui/panels/stacked_panel_collection.h
|
| @@ -12,7 +12,7 @@
|
| #include "chrome/browser/ui/panels/panel_constants.h"
|
| #include "ui/gfx/rect.h"
|
|
|
| -class NativePanelStack;
|
| +class NativePanelStackWindow;
|
| class PanelManager;
|
| namespace gfx {
|
| class Vector2d;
|
| @@ -71,7 +71,7 @@ class StackedPanelCollection : public PanelCollection {
|
| // panels are collapsed.
|
| int GetMaximiumAvailableBottomSpace() const;
|
|
|
| - NativePanelStack* native_stack() const { return native_stack_; }
|
| + NativePanelStackWindow* native_stack() const { return native_stack_; }
|
| int num_panels() const { return panels_.size(); }
|
| const Panels& panels() const { return panels_; }
|
| Panel* top_panel() const { return panels_.empty() ? NULL : panels_.front(); }
|
| @@ -130,7 +130,7 @@ class StackedPanelCollection : public PanelCollection {
|
|
|
| PanelManager* panel_manager_;
|
|
|
| - NativePanelStack* native_stack_; // Weak, owns us.
|
| + NativePanelStackWindow* native_stack_; // Weak, owns us.
|
|
|
| Panels panels_; // The top panel is in the front of the list.
|
|
|
|
|