Home | History | Annotate | Download | only in communicator

Lines Matching defs:Login

5 #include "jingle/notifier/communicator/login.h"
27 Login::Delegate::~Delegate() {}
29 Login::Login(Delegate* delegate,
48 Login::~Login() {
53 void Login::StartConnection() {
58 void Login::UpdateXmppSettings(const buzz::XmppClientSettings& user_settings) {
68 void Login::OnConnect(base::WeakPtr<buzz::XmppTaskParentInterface> base_task) {
74 void Login::OnRedirect(const ServerInformation& redirect_server) {
77 // Drop the current connection, and start the login process again.
82 void Login::OnCredentialsRejected() {
88 void Login::OnSettingsExhausted() {
94 void Login::OnIPAddressChanged() {
99 void Login::OnConnectionTypeChanged(
105 void Login::OnDNSChanged() {
110 void Login::OnNetworkEvent() {
118 void Login::ResetReconnectState() {
124 void Login::TryReconnect() {
131 FROM_HERE, reconnect_interval_, this, &Login::DoReconnect);
134 void Login::DoReconnect() {