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

Unified Diff: jingle/notifier/communicator/single_login_attempt.h

Issue 8589003: Add OVERRIDE to jingle/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: includes 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 | « jingle/notifier/communicator/login.h ('k') | jingle/notifier/listener/mediator_thread_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/notifier/communicator/single_login_attempt.h
diff --git a/jingle/notifier/communicator/single_login_attempt.h b/jingle/notifier/communicator/single_login_attempt.h
index 89607670d69718f84ca3e9541d898861adf7004e..2bdab1fc2a7b046508c372cbf08a121b9b1c705b 100644
--- a/jingle/notifier/communicator/single_login_attempt.h
+++ b/jingle/notifier/communicator/single_login_attempt.h
@@ -7,6 +7,7 @@
#include <string>
+#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
#include "jingle/notifier/base/xmpp_connection.h"
#include "jingle/notifier/communicator/xmpp_connection_generator.h"
@@ -46,15 +47,16 @@ class SingleLoginAttempt : public XmppConnection::Delegate,
virtual ~SingleLoginAttempt();
// XmppConnection::Delegate implementation.
- virtual void OnConnect(base::WeakPtr<buzz::XmppTaskParentInterface> parent);
+ virtual void OnConnect(
+ base::WeakPtr<buzz::XmppTaskParentInterface> parent) OVERRIDE;
virtual void OnError(buzz::XmppEngine::Error error,
int error_subcode,
- const buzz::XmlElement* stream_error);
+ const buzz::XmlElement* stream_error) OVERRIDE;
// XmppConnectionGenerator::Delegate implementation.
- virtual void OnNewSettings(const ConnectionSettings& new_settings);
+ virtual void OnNewSettings(const ConnectionSettings& new_settings) OVERRIDE;
virtual void OnExhaustedSettings(bool successfully_resolved_dns,
- int first_dns_error);
+ int first_dns_error) OVERRIDE;
private:
LoginSettings* login_settings_;
« no previous file with comments | « jingle/notifier/communicator/login.h ('k') | jingle/notifier/listener/mediator_thread_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698