 Chromium Code Reviews
 Chromium Code Reviews Issue 233733004:
  [webcrypto] Make operations run on worker threads.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 233733004:
  [webcrypto] Make operations run on worker threads.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| Index: content/child/webcrypto/jwk.h | 
| diff --git a/content/child/webcrypto/jwk.h b/content/child/webcrypto/jwk.h | 
| index 17bf59ed80284d7acbe2095cf0bb283bb6ebacbe..a385c401123a689432d53d14368fd08ab598cffd 100644 | 
| --- a/content/child/webcrypto/jwk.h | 
| +++ b/content/child/webcrypto/jwk.h | 
| @@ -5,6 +5,7 @@ | 
| #ifndef CONTENT_CHILD_WEBCRYPTO_JWK_H_ | 
| #define CONTENT_CHILD_WEBCRYPTO_JWK_H_ | 
| +#include "base/basictypes.h" | 
| #include "third_party/WebKit/public/platform/WebArrayBuffer.h" | 
| #include "third_party/WebKit/public/platform/WebCrypto.h" | 
| #include "third_party/WebKit/public/platform/WebCryptoAlgorithmParams.h" | 
| @@ -22,8 +23,7 @@ Status ImportKeyJwk(const CryptoData& key_data, | 
| blink::WebCryptoKeyUsageMask usage_mask, | 
| blink::WebCryptoKey* key); | 
| -Status ExportKeyJwk(const blink::WebCryptoKey& key, | 
| - blink::WebArrayBuffer* buffer); | 
| +Status ExportKeyJwk(const blink::WebCryptoKey& key, std::vector<uint8>* buffer); | 
| 
Ryan Sleevi
2014/04/24 02:10:41
IWYU - include <vector>
 
eroman
2014/04/24 20:59:38
Done.
 | 
| } // namespace webcrypto |