Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(477)

Unified Diff: remoting/jingle_glue/xmpp_socket_adapter.h

Issue 8601011: Add OVERRIDE to remoting/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/jingle_glue/ssl_socket_adapter.h ('k') | remoting/protocol/buffered_socket_writer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/jingle_glue/xmpp_socket_adapter.h
diff --git a/remoting/jingle_glue/xmpp_socket_adapter.h b/remoting/jingle_glue/xmpp_socket_adapter.h
index 90627cfa7370dbfaf651af1f266d2e7aeecf2728..953cbcc0fca26fa40f020a0cb30b6ff1f2eac59d 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
« no previous file with comments | « remoting/jingle_glue/ssl_socket_adapter.h ('k') | remoting/protocol/buffered_socket_writer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698