summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-02 03:43:10 +0000
committerwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-02 03:43:10 +0000
commit3b97cab8e2a256171ee36a15238e5247293aa7d8 (patch)
tree91adcf5daec5df4c61f1a1339e6c88eab44764f3
parentb6a97e60e7fed66e2b38a7eaa8f8b46c4b3cb74b (diff)
downloadchromium_src-3b97cab8e2a256171ee36a15238e5247293aa7d8.zip
chromium_src-3b97cab8e2a256171ee36a15238e5247293aa7d8.tar.gz
chromium_src-3b97cab8e2a256171ee36a15238e5247293aa7d8.tar.bz2
Add missing virtual qualifiers to appease clang.
BUG= TEST= Review URL: http://codereview.chromium.org/7553004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95039 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--remoting/protocol/channel_authenticator.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/remoting/protocol/channel_authenticator.h b/remoting/protocol/channel_authenticator.h
index af646bf..9fe2700 100644
--- a/remoting/protocol/channel_authenticator.h
+++ b/remoting/protocol/channel_authenticator.h
@@ -48,7 +48,7 @@ class ChannelAuthenticator : public base::NonThreadSafe {
class HostChannelAuthenticator : public ChannelAuthenticator {
public:
HostChannelAuthenticator(net::SSLServerSocket* socket);
- ~HostChannelAuthenticator();
+ virtual ~HostChannelAuthenticator();
// ChannelAuthenticator overrides.
virtual void Authenticate(const std::string& shared_secret,
@@ -74,11 +74,11 @@ class HostChannelAuthenticator : public ChannelAuthenticator {
class ClientChannelAuthenticator : public ChannelAuthenticator {
public:
ClientChannelAuthenticator(net::SSLClientSocket* socket);
- ~ClientChannelAuthenticator();
+ virtual ~ClientChannelAuthenticator();
// ChannelAuthenticator overrides.
- void Authenticate(const std::string& shared_secret,
- const DoneCallback& done_callback);
+ virtual void Authenticate(const std::string& shared_secret,
+ const DoneCallback& done_callback);
private:
void DoAuthWrite();