Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1916)

Unified Diff: chrome/browser/extensions/extension_service.cc

Issue 890083002: [Extensions] Propagate activeTab hosts to extension background pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_service.cc
diff --git a/chrome/browser/extensions/extension_service.cc b/chrome/browser/extensions/extension_service.cc
index 53d907bdea0a0b73b68cfd1b1c42553fc75b9a17..1fbae20b2b88c87faff790f5fb2da8cb309b29ec 100644
--- a/chrome/browser/extensions/extension_service.cc
+++ b/chrome/browser/extensions/extension_service.cc
@@ -1032,7 +1032,7 @@ void ExtensionService::NotifyExtensionLoaded(const Extension* extension) {
if (host_profile->GetOriginalProfile() ==
profile_->GetOriginalProfile()) {
std::vector<ExtensionMsg_Loaded_Params> loaded_extensions(
- 1, ExtensionMsg_Loaded_Params(extension));
+ 1, ExtensionMsg_Loaded_Params(extension, false));
not at google - send to devlin 2015/02/05 00:16:13 document this (what does false mean / why is it se
Devlin 2015/02/05 19:54:50 Done.
host->Send(
new ExtensionMsg_Loaded(loaded_extensions));
}

Powered by Google App Engine
This is Rietveld 408576698