Index: chrome/browser/shell_integration.cc |
diff --git a/chrome/browser/shell_integration.cc b/chrome/browser/shell_integration.cc |
index c7362d69020eb153a871f827e24c58a55e3eefb3..9c4c6166853874de596af3788d835e2645bd2f89 100644 |
--- a/chrome/browser/shell_integration.cc |
+++ b/chrome/browser/shell_integration.cc |
@@ -33,6 +33,18 @@ ShellIntegration::ShortcutInfo::ShortcutInfo() |
ShellIntegration::ShortcutInfo::~ShortcutInfo() {} |
+static const struct ShellIntegration::AppModeInfo* gAppModeInfo = NULL; |
+ |
+// static |
+void ShellIntegration::SetAppModeInfo(const struct AppModeInfo* info) { |
+ gAppModeInfo = info; |
+} |
+ |
+// static |
+const struct ShellIntegration::AppModeInfo* ShellIntegration::AppModeInfo() { |
+ return gAppModeInfo; |
+} |
+ |
// static |
CommandLine ShellIntegration::CommandLineArgsForLauncher( |
const GURL& url, |