summaryrefslogtreecommitdiffstats
path: root/remoting/protocol/fake_authenticator.h
diff options
context:
space:
mode:
authormostynb <mostynb@opera.com>2014-10-08 09:58:09 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-08 16:59:03 +0000
commit11d989c52c6da43c5e8eb9d377ef0286a1cc8fba (patch)
treef2cb68b6b799bbfcdce2a51e72f69aa0164bb845 /remoting/protocol/fake_authenticator.h
parentc9d7a691bb7a1c5cfeeddfc29f227215a9338045 (diff)
downloadchromium_src-11d989c52c6da43c5e8eb9d377ef0286a1cc8fba.zip
chromium_src-11d989c52c6da43c5e8eb9d377ef0286a1cc8fba.tar.gz
chromium_src-11d989c52c6da43c5e8eb9d377ef0286a1cc8fba.tar.bz2
replace OVERRIDE and FINAL with override and final in remoting/
BUG=417463 Review URL: https://codereview.chromium.org/628753002 Cr-Commit-Position: refs/heads/master@{#298734}
Diffstat (limited to 'remoting/protocol/fake_authenticator.h')
-rw-r--r--remoting/protocol/fake_authenticator.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/remoting/protocol/fake_authenticator.h b/remoting/protocol/fake_authenticator.h
index a6ddc74..c55030c 100644
--- a/remoting/protocol/fake_authenticator.h
+++ b/remoting/protocol/fake_authenticator.h
@@ -21,7 +21,7 @@ class FakeChannelAuthenticator : public ChannelAuthenticator {
// ChannelAuthenticator interface.
virtual void SecureAndAuthenticate(
scoped_ptr<net::StreamSocket> socket,
- const DoneCallback& done_callback) OVERRIDE;
+ const DoneCallback& done_callback) override;
private:
void OnAuthBytesWritten(int result);
@@ -65,14 +65,14 @@ class FakeAuthenticator : public Authenticator {
void set_messages_till_started(int messages);
// 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:
Type type_;
@@ -100,7 +100,7 @@ class FakeHostAuthenticatorFactory : public AuthenticatorFactory {
virtual scoped_ptr<Authenticator> CreateAuthenticator(
const std::string& local_jid,
const std::string& remote_jid,
- const buzz::XmlElement* first_message) OVERRIDE;
+ const buzz::XmlElement* first_message) override;
private:
int round_trips_;