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

Unified Diff: jingle/notifier/communicator/gaia_token_pre_xmpp_auth.cc

Issue 2981010: Fixed bug where sync notifications don't work for non-gmail accounts. (Closed)
Patch Set: fixed spacing Created 10 years, 5 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/notifier/communicator/gaia_token_pre_xmpp_auth.cc
diff --git a/jingle/notifier/communicator/gaia_token_pre_xmpp_auth.cc b/jingle/notifier/communicator/gaia_token_pre_xmpp_auth.cc
index bcc6f0403d174d2f091754981a6c006cf5b65366..a10900d0e42dd118551a151208124d8e06a26ae6 100644
--- a/jingle/notifier/communicator/gaia_token_pre_xmpp_auth.cc
+++ b/jingle/notifier/communicator/gaia_token_pre_xmpp_auth.cc
@@ -6,6 +6,7 @@
#include <algorithm>
+#include "base/basictypes.h"
#include "talk/base/socketaddress.h"
#include "talk/xmpp/constants.h"
#include "talk/xmpp/saslcookiemechanism.h"
@@ -13,7 +14,39 @@
namespace notifier {
namespace {
+
const char kGaiaAuthMechanism[] = "X-GOOGLE-TOKEN";
+
+class GaiaCookieMechanism : public buzz::SaslCookieMechanism {
+ public:
+ GaiaCookieMechanism(const std::string & mechanism,
+ const std::string & username,
+ const std::string & cookie,
+ const std::string & token_service)
+ : buzz::SaslCookieMechanism(
+ mechanism, username, cookie, token_service) {}
+
+ virtual ~GaiaCookieMechanism() {}
+
+ virtual buzz::XmlElement* StartSaslAuth() {
+ buzz::XmlElement* auth = buzz::SaslCookieMechanism::StartSaslAuth();
+ // These attributes are necessary for working with non-gmail gaia
+ // accounts.
+ const std::string NS_GOOGLE_AUTH_PROTOCOL(
+ "http://www.google.com/talk/protocol/auth");
+ const buzz::QName QN_GOOGLE_ALLOW_GENERATED_JID_XMPP_LOGIN(
+ true, NS_GOOGLE_AUTH_PROTOCOL, "allow-generated-jid");
+ const buzz::QName QN_GOOGLE_AUTH_CLIENT_USES_FULL_BIND_RESULT(
+ true, NS_GOOGLE_AUTH_PROTOCOL, "client-uses-full-bind-result");
+ auth->SetAttr(QN_GOOGLE_ALLOW_GENERATED_JID_XMPP_LOGIN, "true");
+ auth->SetAttr(QN_GOOGLE_AUTH_CLIENT_USES_FULL_BIND_RESULT, "true");
+ return auth;
+ }
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(GaiaCookieMechanism);
+};
+
} // namespace
GaiaTokenPreXmppAuth::GaiaTokenPreXmppAuth(
@@ -69,7 +102,7 @@ buzz::SaslMechanism* GaiaTokenPreXmppAuth::CreateSaslMechanism(
const std::string& mechanism) {
if (mechanism != kGaiaAuthMechanism)
return NULL;
- return new buzz::SaslCookieMechanism(
+ return new GaiaCookieMechanism(
kGaiaAuthMechanism, username_, token_, token_service_);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698