summaryrefslogtreecommitdiffstats
path: root/src/core/browser_context_qt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/browser_context_qt.cpp')
-rw-r--r--src/core/browser_context_qt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/browser_context_qt.cpp b/src/core/browser_context_qt.cpp
index dd0884edb..8cb55a8f0 100644
--- a/src/core/browser_context_qt.cpp
+++ b/src/core/browser_context_qt.cpp
@@ -77,7 +77,7 @@ BrowserContextQt::BrowserContextQt(BrowserContextAdapter *adapter)
{
PrefServiceFactory factory;
factory.set_user_prefs(m_prefStore);
- scoped_refptr<PrefRegistrySimple> registry(new PrefRegistrySimple());
+ PrefRegistrySimple *registry = new PrefRegistrySimple();
#if BUILDFLAG(ENABLE_SPELLCHECK)
// Initial spellcheck settings
@@ -87,7 +87,7 @@ BrowserContextQt::BrowserContextQt(BrowserContextAdapter *adapter)
registry->RegisterBooleanPref(spellcheck::prefs::kEnableSpellcheck, false);
registry->RegisterBooleanPref(spellcheck::prefs::kSpellCheckUseSpellingService, false);
#endif //ENABLE_SPELLCHECK
- m_prefService = factory.Create(std::move(registry.get()));
+ m_prefService = factory.Create(registry);
user_prefs::UserPrefs::Set(this, m_prefService.get());
}