forked from organicmaps/organicmaps
Extracted 'DeviceName' method from platform.cpp
This commit is contained in:
parent
953ff937f3
commit
e4ee963e47
8 changed files with 35 additions and 5 deletions
|
@ -198,11 +198,6 @@ bool Platform::IsDirectory(string const & path)
|
|||
return fileType == FILE_TYPE_DIRECTORY;
|
||||
}
|
||||
|
||||
string Platform::DeviceName() const
|
||||
{
|
||||
return OMIM_OS_NAME;
|
||||
}
|
||||
|
||||
// static
|
||||
void Platform::GetFilesRecursively(string const & directory, FilesList & filesList)
|
||||
{
|
||||
|
|
|
@ -191,6 +191,11 @@ unique_ptr<ModelReader> Platform::GetReader(string const & file, string const &
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
string Platform::DeviceName() const
|
||||
{
|
||||
return OMIM_OS_NAME;
|
||||
}
|
||||
|
||||
void Platform::GetFilesByRegExp(string const & directory, string const & regexp, FilesList & res)
|
||||
{
|
||||
if (ZipFileReader::IsZip(directory))
|
||||
|
|
|
@ -143,6 +143,11 @@ string Platform::GetMemoryInfo() const
|
|||
return ss.str();
|
||||
}
|
||||
|
||||
string Platform::DeviceName() const
|
||||
{
|
||||
return OMIM_OS_NAME;
|
||||
}
|
||||
|
||||
void Platform::RunOnGuiThread(base::TaskLoop::Task && task)
|
||||
{
|
||||
ASSERT(m_guiThread, ());
|
||||
|
|
|
@ -212,6 +212,11 @@ string Platform::UniqueClientId() const
|
|||
return "n0dbus0n0lsb00000000000000000000";
|
||||
}
|
||||
|
||||
string Platform::DeviceName() const
|
||||
{
|
||||
return OMIM_OS_NAME;
|
||||
}
|
||||
|
||||
Platform::EConnectionType Platform::ConnectionStatus()
|
||||
{
|
||||
int socketFd = socket(AF_INET, SOCK_STREAM, 0);
|
||||
|
|
|
@ -113,6 +113,11 @@ Platform::Platform()
|
|||
|
||||
string Platform::UniqueClientId() const { return [Alohalytics installationId].UTF8String; }
|
||||
|
||||
string Platform::DeviceName() const
|
||||
{
|
||||
return OMIM_OS_NAME;
|
||||
}
|
||||
|
||||
void Platform::RunOnGuiThread(base::TaskLoop::Task && task)
|
||||
{
|
||||
ASSERT(m_guiThread, ());
|
||||
|
|
|
@ -23,6 +23,11 @@ unique_ptr<ModelReader> Platform::GetReader(string const & file, string const &
|
|||
READER_CHUNK_LOG_SIZE, READER_CHUNK_LOG_COUNT);
|
||||
}
|
||||
|
||||
string Platform::DeviceName() const
|
||||
{
|
||||
return OMIM_OS_NAME;
|
||||
}
|
||||
|
||||
bool Platform::GetFileSizeByName(string const & fileName, uint64_t & size) const
|
||||
{
|
||||
try
|
||||
|
|
|
@ -55,6 +55,11 @@ string Platform::UniqueClientId() const
|
|||
return FromTizenString(pApp->GetAppId());
|
||||
}
|
||||
|
||||
string Platform::DeviceName() const
|
||||
{
|
||||
return OMIM_OS_NAME;
|
||||
}
|
||||
|
||||
void Platform::RunOnGuiThread(TFunctor const & fn)
|
||||
{
|
||||
/// @todo
|
||||
|
|
|
@ -136,6 +136,11 @@ string Platform::UniqueClientId() const
|
|||
return "@TODO";
|
||||
}
|
||||
|
||||
string Platform::DeviceName() const
|
||||
{
|
||||
return OMIM_OS_NAME;
|
||||
}
|
||||
|
||||
void Platform::RunOnGuiThread(TFunctor const & fn)
|
||||
{
|
||||
/// @todo
|
||||
|
|
Loading…
Add table
Reference in a new issue