diff options
author | mostynb <mostynb@opera.com> | 2014-10-08 09:58:09 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-08 16:59:03 +0000 |
commit | 11d989c52c6da43c5e8eb9d377ef0286a1cc8fba (patch) | |
tree | f2cb68b6b799bbfcdce2a51e72f69aa0164bb845 /remoting/host/pam_authorization_factory_posix.cc | |
parent | c9d7a691bb7a1c5cfeeddfc29f227215a9338045 (diff) | |
download | chromium_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/host/pam_authorization_factory_posix.cc')
-rw-r--r-- | remoting/host/pam_authorization_factory_posix.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/remoting/host/pam_authorization_factory_posix.cc b/remoting/host/pam_authorization_factory_posix.cc index 9409ac0..9e675c5 100644 --- a/remoting/host/pam_authorization_factory_posix.cc +++ b/remoting/host/pam_authorization_factory_posix.cc @@ -23,14 +23,14 @@ class PamAuthorizer : public protocol::Authenticator { virtual ~PamAuthorizer(); // protocol::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<protocol::ChannelAuthenticator> - CreateChannelAuthenticator() const OVERRIDE; + CreateChannelAuthenticator() const override; private: void MaybeCheckLocalLogin(); |