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

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

Issue 16267002: Re-fix http://crbug.com/87176, and add a test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Second round of creis comments Created 7 years, 6 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_host.cc
diff --git a/chrome/browser/extensions/extension_host.cc b/chrome/browser/extensions/extension_host.cc
index 6b97d397d4d12b6893d1cc646f301f1344d2aac9..eb5691752fdeb7f4f3a4a9df11c70ccd3b360a7e 100644
--- a/chrome/browser/extensions/extension_host.cc
+++ b/chrome/browser/extensions/extension_host.cc
@@ -162,15 +162,6 @@ ExtensionHost::~ExtensionHost() {
UMA_HISTOGRAM_LONG_TIMES("Extensions.EventPageActiveTime",
since_created_.Elapsed());
}
- // Clear the extension's renderer process out from any WebContents
- // that might have it in their back history.
- // TODO(jyasskin): Remove this hack by making extension reloading
- // wait for renderer shutdown.
- content::NotificationService::current()->Notify(
- content::NOTIFICATION_RENDERER_PROCESS_CLOSING,
- content::Source<content::RenderProcessHost>(render_process_host()),
- content::NotificationService::NoDetails());
-
content::NotificationService::current()->Notify(
chrome::NOTIFICATION_EXTENSION_HOST_DESTROYED,
content::Source<Profile>(profile_),

Powered by Google App Engine
This is Rietveld 408576698