aboutsummaryrefslogtreecommitdiff
path: root/cast/common/public/cast_socket.h
diff options
context:
space:
mode:
Diffstat (limited to 'cast/common/public/cast_socket.h')
-rw-r--r--cast/common/public/cast_socket.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/cast/common/public/cast_socket.h b/cast/common/public/cast_socket.h
index 5c0b8775..330b1962 100644
--- a/cast/common/public/cast_socket.h
+++ b/cast/common/public/cast_socket.h
@@ -28,13 +28,15 @@ class CastSocket : public TlsConnection::Client {
public:
class Client {
public:
- virtual ~Client() = default;
// Called when a terminal error on |socket| has occurred.
virtual void OnError(CastSocket* socket, Error error) = 0;
virtual void OnMessage(CastSocket* socket,
::cast::channel::CastMessage message) = 0;
+
+ protected:
+ virtual ~Client();
};
CastSocket(std::unique_ptr<TlsConnection> connection, Client* client);