| 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_
|
|
|