Chromium Code Reviews| Index: crypto/symmetric_key.h |
| diff --git a/crypto/symmetric_key.h b/crypto/symmetric_key.h |
| index 3c25fab258405c224a35148888dce69fe15a35a9..5074874bbcadf3627432680f470e112055df2cfe 100644 |
| --- a/crypto/symmetric_key.h |
| +++ b/crypto/symmetric_key.h |
| @@ -70,7 +70,7 @@ class CRYPTO_EXPORT SymmetricKey { |
| // Extracts the raw key from the platform specific data. |
| // Warning: |raw_key| holds the raw key as bytes and thus must be handled |
| // carefully. |
| - bool GetRawKey(std::string* raw_key); |
| + bool GetRawKey(std::string* raw_key) const; |
|
Ryan Sleevi
2012/01/04 01:33:43
This isn't a const operation on Windows, at least
Greg Spencer (Chromium)
2012/01/05 22:18:03
Crap. OK, I'll change the constness of the argume
|
| #if defined(OS_CHROMEOS) |
| // Creates symmetric key from NSS key. Takes over the ownership of |key|. |