| Index: chrome/browser/extensions/extension_util.cc
|
| diff --git a/chrome/browser/extensions/extension_util.cc b/chrome/browser/extensions/extension_util.cc
|
| index 6b27885445973a01fb41f875222c267a0e1e99c6..92018d0b9f21addbf4f1664d26829f440da523ef 100644
|
| --- a/chrome/browser/extensions/extension_util.cc
|
| +++ b/chrome/browser/extensions/extension_util.cc
|
| @@ -113,7 +113,7 @@ void SetIsIncognitoEnabled(const std::string& extension_id,
|
| // by const ref everywhere. Make a copy to be safe.
|
| std::string id = extension_id;
|
| if (extension_is_enabled)
|
| - service->ReloadExtension(id);
|
| + service->ReloadExtension(id, true);
|
|
|
| // Reloading the extension invalidates the |extension| pointer.
|
| extension = service->GetInstalledExtension(id);
|
| @@ -167,7 +167,7 @@ void SetAllowFileAccess(const std::string& extension_id,
|
|
|
| bool extension_is_enabled = service->extensions()->Contains(extension_id);
|
| if (extension_is_enabled)
|
| - service->ReloadExtension(extension_id);
|
| + service->ReloadExtension(extension_id, true);
|
| }
|
|
|
| bool AllowedScriptingOnAllUrls(const std::string& extension_id,
|
|
|