| Index: chrome/browser/background/background_contents_service.cc
|
| diff --git a/chrome/browser/background/background_contents_service.cc b/chrome/browser/background/background_contents_service.cc
|
| index 687d87a3103434423a56b6021e37d3c9bd2bd2c5..6577441fbfd1e57ec37ca9d3238ab581a41250ed 100644
|
| --- a/chrome/browser/background/background_contents_service.cc
|
| +++ b/chrome/browser/background/background_contents_service.cc
|
| @@ -129,7 +129,7 @@ class CrashNotificationDelegate : public NotificationDelegate {
|
| RestartApplication(copied_extension_id);
|
| } else {
|
| extensions::ExtensionSystem::Get(profile_)->extension_service()->
|
| - ReloadExtension(copied_extension_id);
|
| + ReloadExtension(copied_extension_id, true);
|
| }
|
|
|
| // Closing the crash notification balloon for the app/extension here should
|
| @@ -237,7 +237,7 @@ void ReloadExtension(const std::string& extension_id, Profile* profile) {
|
| // been restarted successfully by someone else (the user).
|
| return;
|
| }
|
| - extension_system->extension_service()->ReloadExtension(extension_id);
|
| + extension_system->extension_service()->ReloadExtension(extension_id, true);
|
| }
|
|
|
| } // namespace
|
|
|