| Index: media/base/encryption_scheme.h
|
| diff --git a/media/base/encryption_scheme.h b/media/base/encryption_scheme.h
|
| index 37bea6710d264390a5b74cd920e10951ff34eba7..572db86e8ad309fe591db0731029c570e671f0d8 100644
|
| --- a/media/base/encryption_scheme.h
|
| +++ b/media/base/encryption_scheme.h
|
| @@ -42,8 +42,8 @@ class MEDIA_EXPORT EncryptionScheme {
|
|
|
| bool Matches(const Pattern& other) const;
|
|
|
| - uint32_t encrypt_blocks() const { return encrypt_blocks_; }
|
| - uint32_t skip_blocks() const { return skip_blocks_; }
|
| + uint32_t encrypt_blocks() const;
|
| + uint32_t skip_blocks() const;
|
|
|
| bool IsInEffect() const;
|
|
|
| @@ -63,9 +63,9 @@ class MEDIA_EXPORT EncryptionScheme {
|
|
|
| bool Matches(const EncryptionScheme& other) const;
|
|
|
| - bool is_encrypted() const { return mode_ != CIPHER_MODE_UNENCRYPTED; }
|
| - CipherMode mode() const { return mode_; }
|
| - const Pattern& pattern() const { return pattern_; }
|
| + bool is_encrypted() const;
|
| + CipherMode mode() const;
|
| + const Pattern& pattern() const;
|
|
|
| private:
|
| CipherMode mode_ = CIPHER_MODE_UNENCRYPTED;
|
|
|