Chromium Code Reviews| Index: chrome/browser/apps/app_launch_for_metro_restart_win.cc |
| diff --git a/chrome/browser/apps/app_launch_for_metro_restart_win.cc b/chrome/browser/apps/app_launch_for_metro_restart_win.cc |
| index 5522327b98a32f5b9de0b69f3f58f38d8cdc0862..47bc2c07096ff9d60c82f0dbc4008fb26e0ae46b 100644 |
| --- a/chrome/browser/apps/app_launch_for_metro_restart_win.cc |
| +++ b/chrome/browser/apps/app_launch_for_metro_restart_win.cc |
| @@ -18,6 +18,7 @@ |
| #include "chrome/common/pref_names.h" |
| #include "extensions/browser/api/app_runtime/app_runtime_api.h" |
| #include "extensions/browser/extension_system.h" |
| +#include "extensions/common/constants.h" |
| using extensions::AppRuntimeEventRouter; |
| using extensions::Extension; |
| @@ -39,7 +40,8 @@ void LaunchAppWithId(Profile* profile, |
| if (!extension) |
| return; |
| - AppRuntimeEventRouter::DispatchOnLaunchedEvent(profile, extension); |
| + AppRuntimeEventRouter::DispatchOnLaunchedEvent(profile, extension, |
| + extensions::SOURCE_WIN_METRO); |
|
benwells
2014/10/28 21:22:47
This should just be the same as the other restart
cylee1
2014/10/29 16:39:59
Done.
|
| } |
| } // namespace |