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

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

Issue 628123002: Replacing the OVERRIDE with override and FINAL with final in jingle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 #ifndef JINGLE_NOTIFIER_BASE_GAIA_TOKEN_PRE_XMPP_AUTH_H_ 5 #ifndef JINGLE_NOTIFIER_BASE_GAIA_TOKEN_PRE_XMPP_AUTH_H_
6 #define JINGLE_NOTIFIER_BASE_GAIA_TOKEN_PRE_XMPP_AUTH_H_ 6 #define JINGLE_NOTIFIER_BASE_GAIA_TOKEN_PRE_XMPP_AUTH_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 13 matching lines...) Expand all
24 24
25 virtual ~GaiaTokenPreXmppAuth(); 25 virtual ~GaiaTokenPreXmppAuth();
26 26
27 // buzz::PreXmppAuth (-buzz::SaslHandler) implementation. We stub 27 // buzz::PreXmppAuth (-buzz::SaslHandler) implementation. We stub
28 // all the methods out as we don't actually do any authentication at 28 // all the methods out as we don't actually do any authentication at
29 // this point. 29 // this point.
30 virtual void StartPreXmppAuth(const buzz::Jid& jid, 30 virtual void StartPreXmppAuth(const buzz::Jid& jid,
31 const rtc::SocketAddress& server, 31 const rtc::SocketAddress& server,
32 const rtc::CryptString& pass, 32 const rtc::CryptString& pass,
33 const std::string& auth_mechanism, 33 const std::string& auth_mechanism,
34 const std::string& auth_token) OVERRIDE; 34 const std::string& auth_token) override;
35 35
36 virtual bool IsAuthDone() const OVERRIDE; 36 virtual bool IsAuthDone() const override;
37 37
38 virtual bool IsAuthorized() const OVERRIDE; 38 virtual bool IsAuthorized() const override;
39 39
40 virtual bool HadError() const OVERRIDE; 40 virtual bool HadError() const override;
41 41
42 virtual int GetError() const OVERRIDE; 42 virtual int GetError() const override;
43 43
44 virtual buzz::CaptchaChallenge GetCaptchaChallenge() const OVERRIDE; 44 virtual buzz::CaptchaChallenge GetCaptchaChallenge() const override;
45 45
46 virtual std::string GetAuthToken() const OVERRIDE; 46 virtual std::string GetAuthToken() const override;
47 47
48 virtual std::string GetAuthMechanism() const OVERRIDE; 48 virtual std::string GetAuthMechanism() const override;
49 49
50 // buzz::SaslHandler implementation. 50 // buzz::SaslHandler implementation.
51 51
52 virtual std::string ChooseBestSaslMechanism( 52 virtual std::string ChooseBestSaslMechanism(
53 const std::vector<std::string>& mechanisms, bool encrypted) OVERRIDE; 53 const std::vector<std::string>& mechanisms, bool encrypted) override;
54 54
55 virtual buzz::SaslMechanism* CreateSaslMechanism( 55 virtual buzz::SaslMechanism* CreateSaslMechanism(
56 const std::string& mechanism) OVERRIDE; 56 const std::string& mechanism) override;
57 57
58 private: 58 private:
59 std::string username_; 59 std::string username_;
60 std::string token_; 60 std::string token_;
61 std::string token_service_; 61 std::string token_service_;
62 std::string auth_mechanism_; 62 std::string auth_mechanism_;
63 }; 63 };
64 64
65 } // namespace notifier 65 } // namespace notifier
66 66
67 #endif // JINGLE_NOTIFIER_BASE_GAIA_TOKEN_PRE_XMPP_AUTH_H_ 67 #endif // JINGLE_NOTIFIER_BASE_GAIA_TOKEN_PRE_XMPP_AUTH_H_
OLDNEW
« no previous file with comments | « jingle/notifier/base/fake_base_task.cc ('k') | jingle/notifier/base/gaia_token_pre_xmpp_auth.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698