| Index: jingle/notifier/communicator/gaia_token_pre_xmpp_auth.h
|
| ===================================================================
|
| --- jingle/notifier/communicator/gaia_token_pre_xmpp_auth.h (revision 77421)
|
| +++ jingle/notifier/communicator/gaia_token_pre_xmpp_auth.h (working copy)
|
| @@ -18,7 +18,8 @@
|
| class GaiaTokenPreXmppAuth : public buzz::PreXmppAuth {
|
| public:
|
| GaiaTokenPreXmppAuth(const std::string& username, const std::string& token,
|
| - const std::string& token_service);
|
| + const std::string& token_service,
|
| + const std::string& auth_mechanism);
|
|
|
| virtual ~GaiaTokenPreXmppAuth();
|
|
|
| @@ -50,10 +51,13 @@
|
| virtual buzz::SaslMechanism* CreateSaslMechanism(
|
| const std::string& mechanism);
|
|
|
| + static const char kDefaultAuthMechanism[];
|
| +
|
| private:
|
| std::string username_;
|
| std::string token_;
|
| std::string token_service_;
|
| + std::string auth_mechanism_;
|
| };
|
|
|
| } // namespace notifier
|
|
|