Chromium Code Reviews| Index: public/platform/WebCryptoAlgorithm.h |
| diff --git a/public/platform/WebCryptoAlgorithm.h b/public/platform/WebCryptoAlgorithm.h |
| index 7703614a1a945719a40981b3a147bb4aec2a9892..b7d56021ab33534258978f1ac6d1c43742439753 100644 |
| --- a/public/platform/WebCryptoAlgorithm.h |
| +++ b/public/platform/WebCryptoAlgorithm.h |
| @@ -95,8 +95,8 @@ public: |
| WebCryptoAesKeyGenParams* aesKeyGenParams() const; |
|
abarth-chromium
2013/07/03 18:01:41
Don't you need to add WEBKIT_EXPORT here?
eroman
2013/07/03 19:18:06
Done.
|
| private: |
| - WEBKIT_EXPORT void assign(const WebCryptoAlgorithm& other); |
| - WEBKIT_EXPORT void reset(); |
| + void assign(const WebCryptoAlgorithm& other); |
| + void reset(); |
|
abarth-chromium
2013/07/03 18:01:41
WHy did you remove these WEBKIT_EXPORT macros? Th
eroman
2013/07/03 19:18:06
Done.
Sorry, I got confused on what WEBKIT_EXPORT
|
| WebPrivatePtr<WebCryptoAlgorithmPrivate> m_private; |
| }; |