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

Unified Diff: remoting/signaling/xmpp_signal_strategy.h

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/signaling/log_to_server.h ('k') | remoting/test/fake_network_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/signaling/xmpp_signal_strategy.h
diff --git a/remoting/signaling/xmpp_signal_strategy.h b/remoting/signaling/xmpp_signal_strategy.h
index 05eb079d9c31045b10c99de509d03a703fd93e52..2f378bf9e1845c51218601a3c43d440cc718b112 100644
--- a/remoting/signaling/xmpp_signal_strategy.h
+++ b/remoting/signaling/xmpp_signal_strategy.h
@@ -57,21 +57,21 @@ class XmppSignalStrategy : public base::NonThreadSafe,
net::ClientSocketFactory* socket_factory,
scoped_refptr<net::URLRequestContextGetter> request_context_getter,
const XmppServerConfig& xmpp_server_config);
- virtual ~XmppSignalStrategy();
+ ~XmppSignalStrategy() override;
// SignalStrategy interface.
- virtual void Connect() override;
- virtual void Disconnect() override;
- virtual State GetState() const override;
- virtual Error GetError() const override;
- virtual std::string GetLocalJid() const override;
- virtual void AddListener(Listener* listener) override;
- virtual void RemoveListener(Listener* listener) override;
- virtual bool SendStanza(scoped_ptr<buzz::XmlElement> stanza) override;
- virtual std::string GetNextId() override;
+ void Connect() override;
+ void Disconnect() override;
+ State GetState() const override;
+ Error GetError() const override;
+ std::string GetLocalJid() const override;
+ void AddListener(Listener* listener) override;
+ void RemoveListener(Listener* listener) override;
+ bool SendStanza(scoped_ptr<buzz::XmlElement> stanza) override;
+ std::string GetNextId() override;
// buzz::XmppStanzaHandler interface.
- virtual bool HandleStanza(const buzz::XmlElement* stanza) override;
+ bool HandleStanza(const buzz::XmlElement* stanza) override;
// This method is used to update the auth info (for example when the OAuth
// access token is renewed). It is OK to call this even when we are in the
« no previous file with comments | « remoting/signaling/log_to_server.h ('k') | remoting/test/fake_network_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698