diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-19 00:06:02 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-19 00:06:02 +0000 |
commit | 6a6fe806ed0d0b7bf8104815398c3b1f3d766410 (patch) | |
tree | 27aab3442983de794d952800f3005d70877a715c /remoting/jingle_glue/xmpp_socket_adapter.h | |
parent | 0f9c4556b26ffb55cea457dfeeec9be2924612d1 (diff) | |
download | chromium_src-6a6fe806ed0d0b7bf8104815398c3b1f3d766410.zip chromium_src-6a6fe806ed0d0b7bf8104815398c3b1f3d766410.tar.gz chromium_src-6a6fe806ed0d0b7bf8104815398c3b1f3d766410.tar.bz2 |
Add OVERRIDE to remoting/.
BUG=104314
TEST=no change
Review URL: http://codereview.chromium.org/8601011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110791 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/jingle_glue/xmpp_socket_adapter.h')
-rw-r--r-- | remoting/jingle_glue/xmpp_socket_adapter.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/remoting/jingle_glue/xmpp_socket_adapter.h b/remoting/jingle_glue/xmpp_socket_adapter.h index 90627cf..953cbcc 100644 --- a/remoting/jingle_glue/xmpp_socket_adapter.h +++ b/remoting/jingle_glue/xmpp_socket_adapter.h @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -27,19 +27,19 @@ class XmppSocketAdapter : public buzz::AsyncSocket, bool allow_unverified_certs); virtual ~XmppSocketAdapter(); - virtual State state(); - virtual Error error(); - virtual int GetError(); + virtual State state() OVERRIDE; + virtual Error error() OVERRIDE; + virtual int GetError() OVERRIDE; void set_firewall(bool firewall) { firewall_ = firewall; } - virtual bool Connect(const talk_base::SocketAddress& addr); - virtual bool Read(char* data, size_t len, size_t* len_read); - virtual bool Write(const char* data, size_t len); - virtual bool Close(); + virtual bool Connect(const talk_base::SocketAddress& addr) OVERRIDE; + virtual bool Read(char* data, size_t len, size_t* len_read) OVERRIDE; + virtual bool Write(const char* data, size_t len) OVERRIDE; + virtual bool Close() OVERRIDE; #if defined(FEATURE_ENABLE_SSL) - virtual bool StartTls(const std::string& domainname); + virtual bool StartTls(const std::string& domainname) OVERRIDE; bool IsOpen() const { return state_ == STATE_OPEN || state_ == STATE_TLS_OPEN; } #else |