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..7ed5d2164ae447dc37bdd276ca1903ea230fe60c 100644 |
--- a/chrome/browser/web_applications/web_app_mac.h |
+++ b/chrome/browser/web_applications/web_app_mac.h |
@@ -13,6 +13,7 @@ |
#include "base/gtest_prod_util.h" |
#include "chrome/browser/shell_integration.h" |
#include "chrome/browser/web_applications/web_app.h" |
+#include "chrome/common/extensions/file_handler_info.h" |
namespace web_app { |
@@ -33,7 +34,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 +105,9 @@ class WebAppShortcutCreator { |
// Information about the app. |
ShellIntegration::ShortcutInfo info_; |
+ // The app's file handlers. |
+ extensions::FileHandlersInfo file_handlers_info_; |
+ |
DISALLOW_COPY_AND_ASSIGN(WebAppShortcutCreator); |
}; |