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

Unified Diff: content/renderer/media/peer_connection_identity_service.h

Issue 670683003: Standardize usage of virtual/override/final in content/renderer/ (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
Index: content/renderer/media/peer_connection_identity_service.h
diff --git a/content/renderer/media/peer_connection_identity_service.h b/content/renderer/media/peer_connection_identity_service.h
index e931c9968386c62d25fed9ebfc28b31cf62bc200..c1c33230c56631d359be5265c18270d509f74d93 100644
--- a/content/renderer/media/peer_connection_identity_service.h
+++ b/content/renderer/media/peer_connection_identity_service.h
@@ -21,13 +21,12 @@ class PeerConnectionIdentityService
public:
explicit PeerConnectionIdentityService(const GURL& origin);
- virtual ~PeerConnectionIdentityService();
+ ~PeerConnectionIdentityService() override;
// webrtc::DTLSIdentityServiceInterface implementation.
- virtual bool RequestIdentity(
- const std::string& identity_name,
- const std::string& common_name,
- webrtc::DTLSIdentityRequestObserver* observer) override;
+ bool RequestIdentity(const std::string& identity_name,
+ const std::string& common_name,
+ webrtc::DTLSIdentityRequestObserver* observer) override;
private:
void OnIdentityReady(const std::string& certificate,
« no previous file with comments | « content/renderer/media/peer_connection_audio_sink_owner.h ('k') | content/renderer/media/peer_connection_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698