QmlDesigner: Move source cache types to their own header

The namespace is now Cache for that types.

Task-number: QDS-4306
Change-Id: I479f1ca534455a41de9dc1d6a1fd891e1d8973eb
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Marco Bubke
2021-05-06 12:26:39 +02:00
parent b3bed53c4f
commit 494469641a
12 changed files with 214 additions and 176 deletions

View File

@@ -64,7 +64,7 @@ using CacheWithMockLocking = QmlDesigner::StorageCache<Utils::PathString,
StorageAdapter,
NiceMock<MockMutex>,
less,
QmlDesigner::Sources::SourceContext>;
QmlDesigner::Cache::SourceContext>;
using CacheWithoutLocking = QmlDesigner::StorageCache<Utils::PathString,
Utils::SmallStringView,
@@ -72,7 +72,7 @@ using CacheWithoutLocking = QmlDesigner::StorageCache<Utils::PathString,
StorageAdapter,
NiceMock<MockMutexNonLocking>,
less,
QmlDesigner::Sources::SourceContext>;
QmlDesigner::Cache::SourceContext>;
template<typename Cache>
class StorageCache : public testing::Test