Index: extensions/shell/browser/shell_extension_system.cc |
diff --git a/extensions/shell/browser/shell_extension_system.cc b/extensions/shell/browser/shell_extension_system.cc |
index 67b37fc102385bc7149c33a76f37e9b96ce22a00..164f447f11afb8ad217e7b9c4657ec7f2d50b5de 100644 |
--- a/extensions/shell/browser/shell_extension_system.cc |
+++ b/extensions/shell/browser/shell_extension_system.cc |
@@ -22,6 +22,7 @@ |
#include "extensions/browser/notification_types.h" |
#include "extensions/browser/quota_service.h" |
#include "extensions/browser/runtime_data.h" |
+#include "extensions/common/constants.h" |
#include "extensions/common/file_util.h" |
using content::BrowserContext; |
@@ -87,7 +88,8 @@ void ShellExtensionSystem::LaunchApp(const ExtensionId& extension_id) { |
const Extension* extension = ExtensionRegistry::Get(browser_context_) |
->enabled_extensions() |
.GetByID(extension_id); |
- AppRuntimeEventRouter::DispatchOnLaunchedEvent(browser_context_, extension); |
+ AppRuntimeEventRouter::DispatchOnLaunchedEvent( |
+ browser_context_, extension, extensions::SOURCE_UNTRACKED); |
} |
void ShellExtensionSystem::Shutdown() { |