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

Unified Diff: remoting/signaling/mock_signal_strategy.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/signaling/log_to_server_unittest.cc ('k') | remoting/signaling/xmpp_signal_strategy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/signaling/mock_signal_strategy.h
diff --git a/remoting/signaling/mock_signal_strategy.h b/remoting/signaling/mock_signal_strategy.h
index ca671e39b3df21e1dac330add0ecd2e1372dc2ac..c39eba730ba98dd5a4658c7716477cb2f548d284 100644
--- a/remoting/signaling/mock_signal_strategy.h
+++ b/remoting/signaling/mock_signal_strategy.h
@@ -27,7 +27,7 @@ class MockSignalStrategy : public SignalStrategy {
// GMock currently doesn't support move-only arguments, so we have
// to use this hack here.
MOCK_METHOD1(SendStanzaPtr, bool(buzz::XmlElement* stanza));
- virtual bool SendStanza(scoped_ptr<buzz::XmlElement> stanza) OVERRIDE {
+ virtual bool SendStanza(scoped_ptr<buzz::XmlElement> stanza) override {
return SendStanzaPtr(stanza.release());
}
};
« no previous file with comments | « remoting/signaling/log_to_server_unittest.cc ('k') | remoting/signaling/xmpp_signal_strategy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698