Index: chrome/browser/web_applications/web_app_mac.h |
diff --git a/chrome/browser/web_applications/web_app_mac.h b/chrome/browser/web_applications/web_app_mac.h |
index f47f64f98701439c9d0b2ce60beb5126b792cc34..80638e2d23c7dbe8392896078257118f3bfba094 100644 |
--- a/chrome/browser/web_applications/web_app_mac.h |
+++ b/chrome/browser/web_applications/web_app_mac.h |
@@ -33,7 +33,8 @@ class WebAppShortcutCreator { |
// |chrome_bundle_id| is the CFBundleIdentifier of the Chrome browser bundle. |
WebAppShortcutCreator( |
const base::FilePath& app_data_dir, |
- const ShellIntegration::ShortcutInfo& shortcut_info); |
+ const ShellIntegration::ShortcutInfo& shortcut_info, |
+ const extensions::FileHandlersInfo& file_handlers_info); |
virtual ~WebAppShortcutCreator(); |
@@ -103,6 +104,9 @@ class WebAppShortcutCreator { |
// Information about the app. |
ShellIntegration::ShortcutInfo info_; |
+ // The app's file handlers. |
+ extensions::FileHandlersInfo file_handlers_info_; |
tapted
2014/04/17 04:37:50
#include chrome/common/extensions/file_handler_inf
jackhou1
2014/04/22 04:40:19
Ah, good point. Changed the struct to hold a copy
|
+ |
DISALLOW_COPY_AND_ASSIGN(WebAppShortcutCreator); |
}; |