| 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();
|
|
|