Chromium Code Reviews| Index: chrome/common/extensions/extension.h |
| =================================================================== |
| --- chrome/common/extensions/extension.h (revision 153190) |
| +++ chrome/common/extensions/extension.h (working copy) |
| @@ -609,6 +609,13 @@ |
| ExtensionAction* script_badge() const { return script_badge_.get(); } |
| ExtensionAction* page_action() const { return page_action_.get(); } |
| ExtensionAction* browser_action() const { return browser_action_.get(); } |
| + bool verbose_install_message() const { |
|
Yoyo Zhou
2012/08/24 15:56:21
I would rename this to something like is_install_m
|
| + return !omnibox_keyword().empty() || |
| + browser_action() || |
| + (page_action() && |
| + (page_action_command() || |
| + !page_action()->default_icon_path().empty())); |
| + } |
| const FileBrowserHandlerList* file_browser_handlers() const { |
| return file_browser_handlers_.get(); |
| } |