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

Unified Diff: remoting/host/pam_authorization_factory_posix.cc

Issue 667123002: Standardize usage of virtual/override/final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/host/pam_authorization_factory_posix.h ('k') | remoting/host/policy_hack/fake_policy_watcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/pam_authorization_factory_posix.cc
diff --git a/remoting/host/pam_authorization_factory_posix.cc b/remoting/host/pam_authorization_factory_posix.cc
index 9e675c5bee5258ea13400756655578d75a11a419..72f89d5c06b3554611513c633a7b93996d078a64 100644
--- a/remoting/host/pam_authorization_factory_posix.cc
+++ b/remoting/host/pam_authorization_factory_posix.cc
@@ -20,17 +20,17 @@ namespace {
class PamAuthorizer : public protocol::Authenticator {
public:
PamAuthorizer(scoped_ptr<protocol::Authenticator> underlying);
- virtual ~PamAuthorizer();
+ ~PamAuthorizer() override;
// protocol::Authenticator interface.
- 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;
- virtual scoped_ptr<protocol::ChannelAuthenticator>
- CreateChannelAuthenticator() const override;
+ State state() const override;
+ bool started() const override;
+ RejectionReason rejection_reason() const override;
+ void ProcessMessage(const buzz::XmlElement* message,
+ const base::Closure& resume_callback) override;
+ scoped_ptr<buzz::XmlElement> GetNextMessage() override;
+ scoped_ptr<protocol::ChannelAuthenticator> CreateChannelAuthenticator()
+ const override;
private:
void MaybeCheckLocalLogin();
« no previous file with comments | « remoting/host/pam_authorization_factory_posix.h ('k') | remoting/host/policy_hack/fake_policy_watcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698