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

Unified Diff: chromecast/media/base/decrypt_context_clearkey.h

Issue 837453003: Chromecast: virtual/override cleanup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missed a few spots Created 5 years, 11 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 | « chromecast/crash/cast_crash_reporter_client.h ('k') | chromecast/media/cdm/browser_cdm_cast.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/media/base/decrypt_context_clearkey.h
diff --git a/chromecast/media/base/decrypt_context_clearkey.h b/chromecast/media/base/decrypt_context_clearkey.h
index 770cea081449851b26bffab160b75dde5d935842..a4e56d0ba25d43f6561f653af5fbe2486ae9661e 100644
--- a/chromecast/media/base/decrypt_context_clearkey.h
+++ b/chromecast/media/base/decrypt_context_clearkey.h
@@ -17,10 +17,10 @@ class DecryptContextClearKey : public DecryptContext {
explicit DecryptContextClearKey(crypto::SymmetricKey* key);
// DecryptContext implementation.
- virtual crypto::SymmetricKey* GetKey() const override;
+ crypto::SymmetricKey* GetKey() const override;
private:
- virtual ~DecryptContextClearKey();
+ ~DecryptContextClearKey() override;
crypto::SymmetricKey* const key_;
@@ -30,4 +30,4 @@ class DecryptContextClearKey : public DecryptContext {
} // namespace media
} // namespace chromecast
-#endif // CHROMECAST_MEDIA_BASE_DECRYPT_CONTEXT_CLEARKEY_H_
+#endif // CHROMECAST_MEDIA_BASE_DECRYPT_CONTEXT_CLEARKEY_H_
« no previous file with comments | « chromecast/crash/cast_crash_reporter_client.h ('k') | chromecast/media/cdm/browser_cdm_cast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698