wsd: remove unsed function in DocumentBroker
Change-Id: Ia310cce20b3ca2c95be98d75b13ec7e047cf19b9 Signed-off-by: Ashod Nakashian <ashod.nakashian@collabora.co.uk>
This commit is contained in:
parent
5dfbaa963d
commit
28b3e165c2
2 changed files with 0 additions and 19 deletions
|
@ -3116,20 +3116,6 @@ void DocumentBroker::shutdownClients(const std::string& closeReason)
|
|||
}
|
||||
}
|
||||
|
||||
void DocumentBroker::childSocketTerminated()
|
||||
{
|
||||
assertCorrectThread();
|
||||
|
||||
if (!_childProcess->isAlive())
|
||||
{
|
||||
LOG_ERR("Child for doc [" << _docKey << "] terminated prematurely.");
|
||||
}
|
||||
|
||||
// We could restore the kit if this was unexpected.
|
||||
// For now, close the connections to cleanup.
|
||||
shutdownClients("terminated");
|
||||
}
|
||||
|
||||
void DocumentBroker::terminateChild(const std::string& closeReason)
|
||||
{
|
||||
assertCorrectThread();
|
||||
|
|
|
@ -495,11 +495,6 @@ private:
|
|||
|
||||
std::unique_lock<std::mutex> getDeferredLock() { return std::unique_lock<std::mutex>(_mutex, std::defer_lock); }
|
||||
|
||||
/// Called by the ChildProcess object to notify
|
||||
/// that it has terminated on its own.
|
||||
/// This happens either when the child exists
|
||||
/// or upon failing to process an incoming message.
|
||||
void childSocketTerminated();
|
||||
void handleTileResponse(const std::vector<char>& payload);
|
||||
void handleDialogPaintResponse(const std::vector<char>& payload, bool child);
|
||||
void handleTileCombinedResponse(const std::vector<char>& payload);
|
||||
|
|
Loading…
Reference in a new issue