summaryrefslogtreecommitdiffstats
path: root/extensions/shell/browser/shell_extension_system.cc
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/shell/browser/shell_extension_system.cc')
-rw-r--r--extensions/shell/browser/shell_extension_system.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/extensions/shell/browser/shell_extension_system.cc b/extensions/shell/browser/shell_extension_system.cc
index e3a75bf..2ed9d7b 100644
--- a/extensions/shell/browser/shell_extension_system.cc
+++ b/extensions/shell/browser/shell_extension_system.cc
@@ -151,11 +151,11 @@ AppSorting* ShellExtensionSystem::app_sorting() {
void ShellExtensionSystem::RegisterExtensionWithRequestContexts(
const Extension* extension,
const base::Closure& callback) {
- BrowserThread::PostTaskAndReply(BrowserThread::IO, FROM_HERE,
- base::Bind(&InfoMap::AddExtension, info_map(),
- make_scoped_refptr(extension),
- base::Time::Now(), false, false),
- callback);
+ BrowserThread::PostTaskAndReply(
+ BrowserThread::IO, FROM_HERE,
+ base::Bind(&InfoMap::AddExtension, info_map(),
+ base::RetainedRef(extension), base::Time::Now(), false, false),
+ callback);
}
void ShellExtensionSystem::UnregisterExtensionWithRequestContexts(