summaryrefslogtreecommitdiffstats
path: root/src/core/favicon_service_factory_qt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/favicon_service_factory_qt.cpp')
-rw-r--r--src/core/favicon_service_factory_qt.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/favicon_service_factory_qt.cpp b/src/core/favicon_service_factory_qt.cpp
index 898882486..6810927c9 100644
--- a/src/core/favicon_service_factory_qt.cpp
+++ b/src/core/favicon_service_factory_qt.cpp
@@ -84,8 +84,6 @@ HistoryServiceFactoryQt::GetForBrowserContext(content::BrowserContext *context)
if (context->IsOffTheRecord())
return nullptr;
- if (!base::PathExists(context->GetPath()))
- return nullptr;
return static_cast<history::HistoryService *>(
GetInstance()->GetServiceForBrowserContext(context, true));
@@ -115,7 +113,6 @@ KeyedService *
HistoryServiceFactoryQt::BuildServiceInstanceFor(content::BrowserContext *context) const
{
Q_ASSERT(!context->IsOffTheRecord());
- Q_ASSERT(base::PathExists(context->GetPath()));
std::unique_ptr<history::HistoryService> historyService(
new history::HistoryService(std::make_unique<HistoryClientQt>(), nullptr));