Index: chrome/browser/ui/views/apps/app_info_dialog/app_info_panel.h |
diff --git a/chrome/browser/ui/views/apps/app_info_dialog/app_info_panel.h b/chrome/browser/ui/views/apps/app_info_dialog/app_info_panel.h |
index 2545e6b282086c4786adecdcf5a5bbd2bc424f32..c94ff68e48b8b32b6e8c281ae60d98ba6a630769 100644 |
--- a/chrome/browser/ui/views/apps/app_info_dialog/app_info_panel.h |
+++ b/chrome/browser/ui/views/apps/app_info_dialog/app_info_panel.h |
@@ -29,9 +29,17 @@ class AppInfoPanel : public views::View { |
views::Label* CreateHeading(const base::string16& text) const; |
// Create a view with a vertically-stacked box layout, which can have child |
- // views appended to it. |
+ // views appended to it. |child_spacing| defaults to |
+ // |views::kRelatedControlVerticalSpacing|. |
+ views::View* CreateVerticalStack(int child_spacing) const; |
views::View* CreateVerticalStack() const; |
+ // Create a view with a horizontally-stacked box layout, which can have child |
+ // views appended to it. |child_spacing| defaults to the spacing between |
+ // related horizontal controls. |
+ views::View* CreateHorizontalStack(int child_spacing) const; |
+ views::View* CreateHorizontalStack() const; |
+ |
Profile* profile_; |
const extensions::Extension* app_; |