Index: remoting/protocol/pairing_authenticator_base.h |
diff --git a/remoting/protocol/pairing_authenticator_base.h b/remoting/protocol/pairing_authenticator_base.h |
index 9e11f7e5a12767e1160b25822c2ea2b30ed49f9c..6000c4538d9d7620456466d8cd349fdc5a6d1ac8 100644 |
--- a/remoting/protocol/pairing_authenticator_base.h |
+++ b/remoting/protocol/pairing_authenticator_base.h |
@@ -42,14 +42,14 @@ class PairingAuthenticatorBase : public Authenticator { |
virtual ~PairingAuthenticatorBase(); |
// Authenticator interface. |
- virtual State state() const OVERRIDE; |
- virtual bool started() const OVERRIDE; |
- virtual RejectionReason rejection_reason() const OVERRIDE; |
+ virtual State state() const override; |
+ virtual bool started() const override; |
+ virtual RejectionReason rejection_reason() const override; |
virtual void ProcessMessage(const buzz::XmlElement* message, |
- const base::Closure& resume_callback) OVERRIDE; |
- virtual scoped_ptr<buzz::XmlElement> GetNextMessage() OVERRIDE; |
+ const base::Closure& resume_callback) override; |
+ virtual scoped_ptr<buzz::XmlElement> GetNextMessage() override; |
virtual scoped_ptr<ChannelAuthenticator> |
- CreateChannelAuthenticator() const OVERRIDE; |
+ CreateChannelAuthenticator() const override; |
protected: |
typedef base::Callback<void(scoped_ptr<Authenticator> authenticator)> |