diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-19 05:08:38 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-19 05:08:38 +0000 |
commit | 53b6c9d221b472b5fa1ce27329ad3ad7274b6290 (patch) | |
tree | c08e4731a388d6ca73e8d2f32d353ac1692e1482 /content/child/webcrypto/webcrypto_impl.cc | |
parent | 2981c2d899f1dde567d3508f63b898981d7d06a2 (diff) | |
download | chromium_src-53b6c9d221b472b5fa1ce27329ad3ad7274b6290.zip chromium_src-53b6c9d221b472b5fa1ce27329ad3ad7274b6290.tar.gz chromium_src-53b6c9d221b472b5fa1ce27329ad3ad7274b6290.tar.bz2 |
Replace uses of uint8 with uint8_t.
This changelist was generated automatically by:
sed -i 's/\<uint8>\>/s
BUG=394944
Review URL: https://codereview.chromium.org/404733005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284319 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/child/webcrypto/webcrypto_impl.cc')
-rw-r--r-- | content/child/webcrypto/webcrypto_impl.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/content/child/webcrypto/webcrypto_impl.cc b/content/child/webcrypto/webcrypto_impl.cc index c02263a..437d947 100644 --- a/content/child/webcrypto/webcrypto_impl.cc +++ b/content/child/webcrypto/webcrypto_impl.cc @@ -109,7 +109,7 @@ void CompleteWithError(const Status& status, blink::WebCryptoResult* result) { } void CompleteWithBufferOrError(const Status& status, - const std::vector<uint8>& buffer, + const std::vector<uint8_t>& buffer, blink::WebCryptoResult* result) { if (status.IsError()) { CompleteWithError(status, result); @@ -199,9 +199,9 @@ struct EncryptState : public BaseState { const blink::WebCryptoAlgorithm algorithm; const blink::WebCryptoKey key; - const std::vector<uint8> data; + const std::vector<uint8_t> data; - std::vector<uint8> buffer; + std::vector<uint8_t> buffer; }; typedef EncryptState DecryptState; @@ -248,7 +248,7 @@ struct ImportKeyState : public BaseState { key(blink::WebCryptoKey::createNull()) {} const blink::WebCryptoKeyFormat format; - const std::vector<uint8> key_data; + const std::vector<uint8_t> key_data; const blink::WebCryptoAlgorithm algorithm; const bool extractable; const blink::WebCryptoKeyUsageMask usage_mask; @@ -265,7 +265,7 @@ struct ExportKeyState : public BaseState { const blink::WebCryptoKeyFormat format; const blink::WebCryptoKey key; - std::vector<uint8> buffer; + std::vector<uint8_t> buffer; }; typedef EncryptState SignState; @@ -287,8 +287,8 @@ struct VerifySignatureState : public BaseState { const blink::WebCryptoAlgorithm algorithm; const blink::WebCryptoKey key; - const std::vector<uint8> signature; - const std::vector<uint8> data; + const std::vector<uint8_t> signature; + const std::vector<uint8_t> data; bool verify_result; }; @@ -310,7 +310,7 @@ struct WrapKeyState : public BaseState { const blink::WebCryptoKey wrapping_key; const blink::WebCryptoAlgorithm wrap_algorithm; - std::vector<uint8> buffer; + std::vector<uint8_t> buffer; }; struct UnwrapKeyState : public BaseState { @@ -334,7 +334,7 @@ struct UnwrapKeyState : public BaseState { unwrapped_key(blink::WebCryptoKey::createNull()) {} const blink::WebCryptoKeyFormat format; - const std::vector<uint8> wrapped_key; + const std::vector<uint8_t> wrapped_key; const blink::WebCryptoKey wrapping_key; const blink::WebCryptoAlgorithm unwrap_algorithm; const blink::WebCryptoAlgorithm unwrapped_key_algorithm; |