mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 20:47:45 +00:00
SpiceAgent: Rename ClipboardServerConnection
Rename ClipboardServerConnection=>ConnectionToClipboardServer. This was done with CLion's automatic rename feature.
This commit is contained in:
parent
75ee77f8a1
commit
493f604dba
6 changed files with 13 additions and 13 deletions
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include "ClipboardServerConnection.h"
|
||||
#include "ConnectionToClipboardServer.h"
|
||||
#include <AK/ByteBuffer.h>
|
||||
#include <AK/Vector.h>
|
||||
#include <LibCore/Notifier.h>
|
||||
|
@ -13,7 +13,7 @@
|
|||
|
||||
class SpiceAgent {
|
||||
public:
|
||||
SpiceAgent(int fd, ClipboardServerConnection&);
|
||||
SpiceAgent(int fd, ConnectionToClipboardServer&);
|
||||
|
||||
static constexpr u32 AGENT_PROTOCOL = 1;
|
||||
enum class Port {
|
||||
|
@ -117,7 +117,7 @@ public:
|
|||
private:
|
||||
int m_fd { -1 };
|
||||
RefPtr<Core::Notifier> m_notifier;
|
||||
ClipboardServerConnection& m_clipboard_connection;
|
||||
ConnectionToClipboardServer& m_clipboard_connection;
|
||||
|
||||
void on_message_received();
|
||||
void send_message(const ByteBuffer& buffer);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue