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

Unified Diff: remoting/protocol/fake_authenticator.h

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 | « remoting/protocol/content_description.h ('k') | remoting/protocol/fake_datagram_socket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/fake_authenticator.h
diff --git a/remoting/protocol/fake_authenticator.h b/remoting/protocol/fake_authenticator.h
index a6ddc74528ab07b2965dfc815e9d76a67b5fe63a..c55030c933af7a306ae3c8c50b429c8da449fcea 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_;
« no previous file with comments | « remoting/protocol/content_description.h ('k') | remoting/protocol/fake_datagram_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698