diff options
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/client/plugin/pepper_xmpp_proxy.h | 2 | ||||
-rw-r--r-- | remoting/host/capturer_fake.h | 2 | ||||
-rw-r--r-- | remoting/host/capturer_fake_ascii.h | 2 | ||||
-rw-r--r-- | remoting/jingle_glue/iq_request.h | 2 | ||||
-rw-r--r-- | remoting/jingle_glue/ssl_socket_adapter.h | 4 | ||||
-rw-r--r-- | remoting/protocol/jingle_session_manager.h | 2 | ||||
-rw-r--r-- | remoting/protocol/rtp_reader.h | 2 |
7 files changed, 8 insertions, 8 deletions
diff --git a/remoting/client/plugin/pepper_xmpp_proxy.h b/remoting/client/plugin/pepper_xmpp_proxy.h index e564c6c..fc5ee42 100644 --- a/remoting/client/plugin/pepper_xmpp_proxy.h +++ b/remoting/client/plugin/pepper_xmpp_proxy.h @@ -34,7 +34,7 @@ class PepperXmppProxy : public XmppProxy { virtual void OnIq(const std::string& response_xml); private: - ~PepperXmppProxy(); + virtual ~PepperXmppProxy(); base::WeakPtr<ChromotingScriptableObject> scriptable_object_; diff --git a/remoting/host/capturer_fake.h b/remoting/host/capturer_fake.h index 60b4fec..879ee03 100644 --- a/remoting/host/capturer_fake.h +++ b/remoting/host/capturer_fake.h @@ -18,7 +18,7 @@ namespace remoting { class CapturerFake : public Capturer { public: CapturerFake(); - ~CapturerFake(); + virtual ~CapturerFake(); // Capturer interface. virtual void ScreenConfigurationChanged(); diff --git a/remoting/host/capturer_fake_ascii.h b/remoting/host/capturer_fake_ascii.h index fe008f7..2f348ad 100644 --- a/remoting/host/capturer_fake_ascii.h +++ b/remoting/host/capturer_fake_ascii.h @@ -19,7 +19,7 @@ namespace remoting { class CapturerFakeAscii : public Capturer { public: CapturerFakeAscii(); - ~CapturerFakeAscii(); + virtual ~CapturerFakeAscii(); // Capturer interface. virtual void ScreenConfigurationChanged(); diff --git a/remoting/jingle_glue/iq_request.h b/remoting/jingle_glue/iq_request.h index f5a9b3e..9d6c689 100644 --- a/remoting/jingle_glue/iq_request.h +++ b/remoting/jingle_glue/iq_request.h @@ -232,7 +232,7 @@ class SessionStartRequest : public sigslot::has_slots<> { public: SessionStartRequest(JavascriptIqRequest* request, cricket::SessionManager* session_manager); - ~SessionStartRequest(); + virtual ~SessionStartRequest(); void Run(); diff --git a/remoting/jingle_glue/ssl_socket_adapter.h b/remoting/jingle_glue/ssl_socket_adapter.h index 279e9e1..9acd3f7 100644 --- a/remoting/jingle_glue/ssl_socket_adapter.h +++ b/remoting/jingle_glue/ssl_socket_adapter.h @@ -33,7 +33,7 @@ class TransportSocket : public net::StreamSocket, public sigslot::has_slots<> { public: TransportSocket(talk_base::AsyncSocket* socket, SSLSocketAdapter *ssl_adapter); - ~TransportSocket(); + virtual ~TransportSocket(); void set_addr(const talk_base::SocketAddress& addr) { addr_ = addr; @@ -92,7 +92,7 @@ class TransportSocket : public net::StreamSocket, public sigslot::has_slots<> { class SSLSocketAdapter : public talk_base::SSLAdapter { public: explicit SSLSocketAdapter(talk_base::AsyncSocket* socket); - ~SSLSocketAdapter(); + virtual ~SSLSocketAdapter(); // StartSSL returns 0 if successful, or non-zero on failure. // If StartSSL is called while the socket is closed or connecting, the SSL diff --git a/remoting/protocol/jingle_session_manager.h b/remoting/protocol/jingle_session_manager.h index 943edf6..8371157 100644 --- a/remoting/protocol/jingle_session_manager.h +++ b/remoting/protocol/jingle_session_manager.h @@ -42,7 +42,7 @@ class ContentDescription : public cricket::ContentDescription { explicit ContentDescription(const CandidateSessionConfig* config, const std::string& auth_token, scoped_refptr<net::X509Certificate> certificate); - ~ContentDescription(); + virtual ~ContentDescription(); const CandidateSessionConfig* config() const { return candidate_config_.get(); diff --git a/remoting/protocol/rtp_reader.h b/remoting/protocol/rtp_reader.h index c2097b9..d932d48 100644 --- a/remoting/protocol/rtp_reader.h +++ b/remoting/protocol/rtp_reader.h @@ -48,7 +48,7 @@ class RtpPacket { class RtpReader : public SocketReaderBase { public: RtpReader(); - ~RtpReader(); + virtual ~RtpReader(); // The OnMessageCallback is called whenever a new message is received. // Ownership of the message is passed the callback. |