Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'search/downloader_search_callback.hpp')
-rw-r--r--search/downloader_search_callback.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/search/downloader_search_callback.hpp b/search/downloader_search_callback.hpp
index 555b67fd58..066957849b 100644
--- a/search/downloader_search_callback.hpp
+++ b/search/downloader_search_callback.hpp
@@ -4,7 +4,7 @@
#include <functional>
-class DataSourceBase;
+class DataSource;
namespace storage
{
@@ -30,7 +30,7 @@ public:
virtual void RunUITask(std::function<void()> fn) = 0;
};
- DownloaderSearchCallback(Delegate & delegate, DataSourceBase const & dataSource,
+ DownloaderSearchCallback(Delegate & delegate, DataSource const & dataSource,
storage::CountryInfoGetter const & infoGetter,
storage::Storage const & storage,
storage::DownloaderSearchParams params);
@@ -39,7 +39,7 @@ public:
private:
Delegate & m_delegate;
- DataSourceBase const & m_dataSource;
+ DataSource const & m_dataSource;
storage::CountryInfoGetter const & m_infoGetter;
storage::Storage const & m_storage;
storage::DownloaderSearchParams m_params;