| Index: public/platform/WebCryptoAlgorithmParams.h
|
| diff --git a/public/platform/WebCryptoAlgorithmParams.h b/public/platform/WebCryptoAlgorithmParams.h
|
| index 87cb0cc91f6d8f4f5200f228ae54b65b3d7a3483..a6d6105c5af678b11d846e5831e9b5fa84886da2 100644
|
| --- a/public/platform/WebCryptoAlgorithmParams.h
|
| +++ b/public/platform/WebCryptoAlgorithmParams.h
|
| @@ -195,7 +195,7 @@ public:
|
| const WebVector<unsigned char>& iv() const { return m_iv; }
|
|
|
| bool hasAdditionalData() const { return m_hasAdditionalData; }
|
| - bool getAdditionalData(const WebVector<unsigned char>*& additionalData)
|
| + bool getAdditionalData(const WebVector<unsigned char>*& additionalData) const
|
| {
|
| if (!m_hasAdditionalData)
|
| return false;
|
| @@ -204,7 +204,7 @@ public:
|
| }
|
|
|
| bool hasTagLength() const { return m_hasTagLength; }
|
| - bool getTagLength(unsigned& tagLength)
|
| + bool getTagLength(unsigned& tagLength) const
|
| {
|
| if (!m_hasTagLength)
|
| return false;
|
| @@ -234,7 +234,7 @@ public:
|
| const WebCryptoAlgorithm& hash() const { return m_hash; }
|
|
|
| bool hasLabel() const { return m_hasLabel; }
|
| - bool getLabel(const WebVector<unsigned char>*& label)
|
| + bool getLabel(const WebVector<unsigned char>*& label) const
|
| {
|
| if (!m_hasLabel)
|
| return false;
|
|
|