loolwsd: LOOLSession -> Session

Change-Id: I94369480fb0a6789375dfe5610ada300e94b80eb
Reviewed-on: https://gerrit.libreoffice.org/31930
Reviewed-by: Ashod Nakashian <ashnakash@gmail.com>
Tested-by: Ashod Nakashian <ashnakash@gmail.com>
This commit is contained in:
Ashod Nakashian
2016-12-12 19:53:58 -05:00
committed by Ashod Nakashian
parent 708f9be23a
commit e60bc28a00
13 changed files with 40 additions and 39 deletions

View File

@ -43,7 +43,7 @@ private:
struct SendItem
{
std::weak_ptr<LOOLSession> Session;
std::weak_ptr<::Session> Session;
std::shared_ptr<MessagePayload> Data;
std::chrono::steady_clock::time_point BirthTime;
};
@ -62,7 +62,7 @@ public:
_cv.notify_all();
}
size_t enqueue(const std::weak_ptr<LOOLSession>& session,
size_t enqueue(const std::weak_ptr<Session>& session,
const std::shared_ptr<MessagePayload>& data)
{
SendItem item = { session, data, std::chrono::steady_clock::now() };