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

Unified Diff: jingle/notifier/communicator/login.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
Index: jingle/notifier/communicator/login.h
diff --git a/jingle/notifier/communicator/login.h b/jingle/notifier/communicator/login.h
index ddc506e126c2dfd8f45554a411c7e7f589a1e0c1..d3bbfd47f7a0f6a7b1366d36dce674807eab87b0 100644
--- a/jingle/notifier/communicator/login.h
+++ b/jingle/notifier/communicator/login.h
@@ -7,6 +7,7 @@
#include <string>
+#include "base/compiler_specific.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
@@ -69,14 +70,14 @@ class Login : public net::NetworkChangeNotifier::IPAddressObserver,
void UpdateXmppSettings(const buzz::XmppClientSettings& user_settings);
// net::NetworkChangeNotifier::IPAddressObserver implementation.
- virtual void OnIPAddressChanged();
+ virtual void OnIPAddressChanged() OVERRIDE;
// SingleLoginAttempt::Delegate implementation.
virtual void OnConnect(
- base::WeakPtr<buzz::XmppTaskParentInterface> base_task);
- virtual void OnNeedReconnect();
+ base::WeakPtr<buzz::XmppTaskParentInterface> base_task) OVERRIDE;
+ virtual void OnNeedReconnect() OVERRIDE;
virtual void OnRedirect(const std::string& redirect_server,
- int redirect_port);
+ int redirect_port) OVERRIDE;
private:
void OnLogoff();
« no previous file with comments | « jingle/notifier/base/xmpp_client_socket_factory.h ('k') | jingle/notifier/communicator/single_login_attempt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698