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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/notifier/base/gaia_token_pre_xmpp_auth.h
diff --git a/jingle/notifier/base/gaia_token_pre_xmpp_auth.h b/jingle/notifier/base/gaia_token_pre_xmpp_auth.h
index 546288eb47781af6b9d9bb4724b6e0cf20eb9114..529b4e028f049f0b7dfde50be9f7f9a085a2e9ce 100644
--- a/jingle/notifier/base/gaia_token_pre_xmpp_auth.h
+++ b/jingle/notifier/base/gaia_token_pre_xmpp_auth.h
@@ -31,29 +31,29 @@ class GaiaTokenPreXmppAuth : public buzz::PreXmppAuth {
const rtc::SocketAddress& server,
const rtc::CryptString& pass,
const std::string& auth_mechanism,
- const std::string& auth_token) OVERRIDE;
+ const std::string& auth_token) override;
- virtual bool IsAuthDone() const OVERRIDE;
+ virtual bool IsAuthDone() const override;
- virtual bool IsAuthorized() const OVERRIDE;
+ virtual bool IsAuthorized() const override;
- virtual bool HadError() const OVERRIDE;
+ virtual bool HadError() const override;
- virtual int GetError() const OVERRIDE;
+ virtual int GetError() const override;
- virtual buzz::CaptchaChallenge GetCaptchaChallenge() const OVERRIDE;
+ virtual buzz::CaptchaChallenge GetCaptchaChallenge() const override;
- virtual std::string GetAuthToken() const OVERRIDE;
+ virtual std::string GetAuthToken() const override;
- virtual std::string GetAuthMechanism() const OVERRIDE;
+ virtual std::string GetAuthMechanism() const override;
// buzz::SaslHandler implementation.
virtual std::string ChooseBestSaslMechanism(
- const std::vector<std::string>& mechanisms, bool encrypted) OVERRIDE;
+ const std::vector<std::string>& mechanisms, bool encrypted) override;
virtual buzz::SaslMechanism* CreateSaslMechanism(
- const std::string& mechanism) OVERRIDE;
+ const std::string& mechanism) override;
private:
std::string username_;
« 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