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

Unified Diff: jingle/notifier/base/gaia_token_pre_xmpp_auth.h

Issue 8589003: Add OVERRIDE to jingle/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: includes Created 9 years, 1 month 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_ssl_client_socket.h ('k') | jingle/notifier/base/proxy_resolving_client_socket.h » ('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 0d7987d7def81e87cbdfb6c525d35422df21a1cd..a2f98f759cf5fe418d56dd84c089d37eef03e241 100644
--- a/jingle/notifier/base/gaia_token_pre_xmpp_auth.h
+++ b/jingle/notifier/base/gaia_token_pre_xmpp_auth.h
@@ -8,6 +8,7 @@
#include <string>
#include <vector>
+#include "base/compiler_specific.h"
#include "talk/xmpp/prexmppauth.h"
namespace notifier {
@@ -29,27 +30,27 @@ class GaiaTokenPreXmppAuth : public buzz::PreXmppAuth {
virtual void StartPreXmppAuth(const buzz::Jid& jid,
const talk_base::SocketAddress& server,
const talk_base::CryptString& pass,
- const std::string& auth_cookie);
+ const std::string& auth_cookie) OVERRIDE;
- virtual bool IsAuthDone() const;
+ virtual bool IsAuthDone() const OVERRIDE;
- virtual bool IsAuthorized() const;
+ virtual bool IsAuthorized() const OVERRIDE;
- virtual bool HadError() const;
+ virtual bool HadError() const OVERRIDE;
- virtual int GetError() const;
+ virtual int GetError() const OVERRIDE;
- virtual buzz::CaptchaChallenge GetCaptchaChallenge() const;
+ virtual buzz::CaptchaChallenge GetCaptchaChallenge() const OVERRIDE;
- virtual std::string GetAuthCookie() const;
+ virtual std::string GetAuthCookie() const OVERRIDE;
// buzz::SaslHandler implementation.
virtual std::string ChooseBestSaslMechanism(
- const std::vector<std::string>& mechanisms, bool encrypted);
+ const std::vector<std::string>& mechanisms, bool encrypted) OVERRIDE;
virtual buzz::SaslMechanism* CreateSaslMechanism(
- const std::string& mechanism);
+ const std::string& mechanism) OVERRIDE;
static const char kDefaultAuthMechanism[];
« no previous file with comments | « jingle/notifier/base/fake_ssl_client_socket.h ('k') | jingle/notifier/base/proxy_resolving_client_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698