Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1374)

Unified Diff: content/child/webcrypto/webcrypto_util.h

Issue 233733004: [webcrypto] Make operations run on worker threads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix argument ordering bug Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/child/webcrypto/webcrypto_util.h
diff --git a/content/child/webcrypto/webcrypto_util.h b/content/child/webcrypto/webcrypto_util.h
index 60f0dbdfa7ed001907f2ca61bc0fea02a782e4d7..81d2c61cc14d050ffb7eeafab23db33d04e07ea8 100644
--- a/content/child/webcrypto/webcrypto_util.h
+++ b/content/child/webcrypto/webcrypto_util.h
@@ -11,7 +11,6 @@
#include "base/strings/string_piece.h"
#include "base/values.h"
#include "content/common/content_export.h"
-#include "third_party/WebKit/public/platform/WebArrayBuffer.h"
#include "third_party/WebKit/public/platform/WebCryptoAlgorithm.h"
#include "third_party/WebKit/public/platform/WebCryptoKey.h"
@@ -25,15 +24,7 @@ class Status;
// convenience function for getting the pointer, and should not be used beyond
// the expected lifetime of |data|.
CONTENT_EXPORT const uint8* Uint8VectorStart(const std::vector<uint8>& data);
-
-// Shrinks a WebArrayBuffer to a new size.
-// TODO(eroman): This works by re-allocating a new buffer. It would be better if
-// the WebArrayBuffer could just be truncated instead.
-void ShrinkBuffer(blink::WebArrayBuffer* buffer, unsigned int new_size);
-
-// Creates a WebArrayBuffer from a uint8 byte array
-blink::WebArrayBuffer CreateArrayBuffer(const uint8* data,
- unsigned int data_size);
+CONTENT_EXPORT uint8* Uint8VectorStart(std::vector<uint8>* data);
// This function decodes unpadded 'base64url' encoded data, as described in
// RFC4648 (http://www.ietf.org/rfc/rfc4648.txt) Section 5.

Powered by Google App Engine
This is Rietveld 408576698