| Index: chrome/browser/ui/views/apps/app_info_dialog/app_info_summary_panel.h
|
| diff --git a/chrome/browser/ui/views/apps/app_info_dialog/app_info_summary_panel.h b/chrome/browser/ui/views/apps/app_info_dialog/app_info_summary_panel.h
|
| index da17ffc22324eba97d56a9e7fbbeebcd8fd6ef47..2b26d772326c4dfa767e7fce86a869f1fd3bb6df 100644
|
| --- a/chrome/browser/ui/views/apps/app_info_dialog/app_info_summary_panel.h
|
| +++ b/chrome/browser/ui/views/apps/app_info_dialog/app_info_summary_panel.h
|
| @@ -34,12 +34,18 @@ class AppInfoSummaryPanel : public AppInfoPanel,
|
| private:
|
| // Internal initialisation methods.
|
| void CreateDescriptionControl();
|
| + void CreateDetailsControl();
|
| void CreateLaunchOptionControl();
|
| +
|
| void LayoutDescriptionControl();
|
| + void LayoutDetailsControl();
|
|
|
| // Overridden from views::ComboboxListener:
|
| virtual void OnPerformAction(views::Combobox* combobox) OVERRIDE;
|
|
|
| + // Returns true if the app has a version number that makes sense to display.
|
| + bool HasVersion() const;
|
| +
|
| // Returns the launch type of the app (e.g. pinned tab, fullscreen, etc).
|
| extensions::LaunchType GetLaunchType() const;
|
|
|
| @@ -52,6 +58,10 @@ class AppInfoSummaryPanel : public AppInfoPanel,
|
| views::Label* description_heading_;
|
| views::Label* description_label_;
|
|
|
| + views::Label* details_heading_;
|
| + views::Label* version_title_;
|
| + views::Label* version_value_;
|
| +
|
| scoped_ptr<LaunchOptionsComboboxModel> launch_options_combobox_model_;
|
| views::Combobox* launch_options_combobox_;
|
|
|
|
|