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

Side by Side Diff: jingle/notifier/base/gaia_token_pre_xmpp_auth.cc

Issue 435823002: Revert "Update webrtc&libjingle 6774:6799." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "jingle/notifier/base/gaia_token_pre_xmpp_auth.h" 5 #include "jingle/notifier/base/gaia_token_pre_xmpp_auth.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "talk/base/socketaddress.h"
11 #include "talk/xmpp/constants.h" 12 #include "talk/xmpp/constants.h"
12 #include "talk/xmpp/saslcookiemechanism.h" 13 #include "talk/xmpp/saslcookiemechanism.h"
13 #include "webrtc/base/socketaddress.h"
14 14
15 namespace notifier { 15 namespace notifier {
16 16
17 namespace { 17 namespace {
18 18
19 class GaiaCookieMechanism : public buzz::SaslCookieMechanism { 19 class GaiaCookieMechanism : public buzz::SaslCookieMechanism {
20 public: 20 public:
21 GaiaCookieMechanism(const std::string & mechanism, 21 GaiaCookieMechanism(const std::string & mechanism,
22 const std::string & username, 22 const std::string & username,
23 const std::string & cookie, 23 const std::string & cookie,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 token_(token), 57 token_(token),
58 token_service_(token_service), 58 token_service_(token_service),
59 auth_mechanism_(auth_mechanism) { 59 auth_mechanism_(auth_mechanism) {
60 DCHECK(!auth_mechanism_.empty()); 60 DCHECK(!auth_mechanism_.empty());
61 } 61 }
62 62
63 GaiaTokenPreXmppAuth::~GaiaTokenPreXmppAuth() { } 63 GaiaTokenPreXmppAuth::~GaiaTokenPreXmppAuth() { }
64 64
65 void GaiaTokenPreXmppAuth::StartPreXmppAuth( 65 void GaiaTokenPreXmppAuth::StartPreXmppAuth(
66 const buzz::Jid& jid, 66 const buzz::Jid& jid,
67 const rtc::SocketAddress& server, 67 const talk_base::SocketAddress& server,
68 const rtc::CryptString& pass, 68 const talk_base::CryptString& pass,
69 const std::string& auth_mechanism, 69 const std::string& auth_mechanism,
70 const std::string& auth_token) { 70 const std::string& auth_token) {
71 SignalAuthDone(); 71 SignalAuthDone();
72 } 72 }
73 73
74 bool GaiaTokenPreXmppAuth::IsAuthDone() const { 74 bool GaiaTokenPreXmppAuth::IsAuthDone() const {
75 return true; 75 return true;
76 } 76 }
77 77
78 bool GaiaTokenPreXmppAuth::IsAuthorized() const { 78 bool GaiaTokenPreXmppAuth::IsAuthorized() const {
(...skipping 30 matching lines...) Expand all
109 109
110 buzz::SaslMechanism* GaiaTokenPreXmppAuth::CreateSaslMechanism( 110 buzz::SaslMechanism* GaiaTokenPreXmppAuth::CreateSaslMechanism(
111 const std::string& mechanism) { 111 const std::string& mechanism) {
112 if (mechanism == auth_mechanism_) 112 if (mechanism == auth_mechanism_)
113 return new GaiaCookieMechanism( 113 return new GaiaCookieMechanism(
114 mechanism, username_, token_, token_service_); 114 mechanism, username_, token_, token_service_);
115 return NULL; 115 return NULL;
116 } 116 }
117 117
118 } // namespace notifier 118 } // namespace notifier
OLDNEW
« no previous file with comments | « jingle/notifier/base/gaia_token_pre_xmpp_auth.h ('k') | jingle/notifier/base/weak_xmpp_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698