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

Issue 1077273002: html_viewer: Move webcrypto to a place where html_viewer can use it. (Closed)

Created:
5 years, 8 months ago by Elliot Glaysher
Modified:
5 years, 8 months ago
CC:
chromium-reviews, qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org, abarth-chromium, Aaron Boodman, darin-cc_chromium.org, darin (slow to review), ben+mojo_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

html_viewer: Move webcrypto to a place where html_viewer can use it. A good chunk of the web (Facebook and YouTube) require webcrypto. This takes the code in the content/ directory, puts it in a new top level component directory, and uses it from html_viewer. BUG=476568 TBR=jochen Committed: https://crrev.com/56f123297ad298113d9a2dc6ed4b7de37dad9e3b Cr-Commit-Position: refs/heads/master@{#325571}

Patch Set 1 #

Patch Set 2 : Move to components. Make gyp on linux work. #

Patch Set 3 : Rebase to ToT #

Patch Set 4 : Edit the gyp files to fix the gn build. #

Patch Set 5 : Move webcrypto.gyp out of components.gyp to fix mac and windows build. #

Patch Set 6 : Copy the msvs_disabled_warnings to the new target. #

Total comments: 4

Patch Set 7 : jam nits #

Total comments: 2

Patch Set 8 : Missed one. #

Patch Set 9 : missed one. #

Patch Set 10 : Rebase to ToT #

Unified diffs Side-by-side diffs Delta from patch set Stats (+840 lines, -20245 lines) Patch
M components/BUILD.gn View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -0 lines 0 comments Download
M components/components_tests.gyp View 1 2 3 4 5 6 7 8 9 3 chunks +44 lines, -0 lines 0 comments Download
A + components/test/data/webcrypto/aes_cbc.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/test/data/webcrypto/aes_ctr.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/test/data/webcrypto/aes_gcm.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/test/data/webcrypto/aes_kw.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/test/data/webcrypto/bad_ec_keys.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/test/data/webcrypto/bad_rsa_keys.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/test/data/webcrypto/ec_private_keys.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/test/data/webcrypto/ecdh.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/test/data/webcrypto/ecdsa.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/test/data/webcrypto/hmac.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/test/data/webcrypto/pkcs1v15_sign.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/test/data/webcrypto/rsa_oaep.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/test/data/webcrypto/rsa_private_keys.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/test/data/webcrypto/rsa_pss.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/test/data/webcrypto/sha.json View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A components/webcrypto/BUILD.gn View 1 2 3 4 5 6 7 8 9 1 chunk +115 lines, -0 lines 0 comments Download
A + components/webcrypto/DEPS View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -1 line 0 comments Download
A + components/webcrypto/OWNERS View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/webcrypto/PRESUBMIT.py View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A components/webcrypto/algorithm_dispatch.h View 1 2 3 4 5 6 7 8 9 1 chunk +132 lines, -0 lines 0 comments Download
A + components/webcrypto/algorithm_dispatch.cc View 1 2 3 4 5 6 7 8 9 2 chunks +8 lines, -12 lines 0 comments Download
A + components/webcrypto/algorithm_implementation.h View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -7 lines 0 comments Download
A + components/webcrypto/algorithm_implementation.cc View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -6 lines 0 comments Download
A + components/webcrypto/algorithm_registry.h View 1 2 3 4 5 6 7 8 9 2 chunks +3 lines, -7 lines 0 comments Download
A + components/webcrypto/algorithm_registry.cc View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -8 lines 0 comments Download
A + components/webcrypto/crypto_data.h View 1 2 3 4 5 6 7 8 9 3 chunks +4 lines, -9 lines 0 comments Download
A + components/webcrypto/crypto_data.cc View 1 2 3 4 5 6 7 8 9 2 chunks +1 line, -5 lines 0 comments Download
A + components/webcrypto/generate_key_result.h View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -9 lines 0 comments Download
A + components/webcrypto/generate_key_result.cc View 1 2 3 4 5 6 7 8 9 2 chunks +1 line, -5 lines 0 comments Download
A + components/webcrypto/jwk.h View 1 2 3 4 5 6 7 8 9 2 chunks +9 lines, -16 lines 0 comments Download
A + components/webcrypto/jwk.cc View 1 2 3 4 5 6 7 8 9 4 chunks +4 lines, -8 lines 0 comments Download
A + components/webcrypto/nss/aes_algorithm_nss.h View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -8 lines 0 comments Download
A + components/webcrypto/nss/aes_algorithm_nss.cc View 1 2 3 4 5 6 7 8 9 2 chunks +7 lines, -11 lines 0 comments Download
A + components/webcrypto/nss/aes_cbc_nss.cc View 1 2 3 4 5 6 7 8 9 2 chunks +6 lines, -10 lines 0 comments Download
A + components/webcrypto/nss/aes_gcm_nss.cc View 1 2 3 4 5 6 7 8 9 3 chunks +6 lines, -10 lines 0 comments Download
A + components/webcrypto/nss/aes_kw_nss.cc View 1 2 3 4 5 6 7 8 9 2 chunks +7 lines, -11 lines 0 comments Download
A + components/webcrypto/nss/hmac_nss.cc View 1 2 3 4 5 6 7 8 9 2 chunks +8 lines, -12 lines 0 comments Download
A + components/webcrypto/nss/key_nss.h View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -7 lines 0 comments Download
A + components/webcrypto/nss/key_nss.cc View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -8 lines 0 comments Download
A + components/webcrypto/nss/rsa_hashed_algorithm_nss.h View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -8 lines 0 comments Download
A + components/webcrypto/nss/rsa_hashed_algorithm_nss.cc View 1 2 3 4 5 6 7 8 9 2 chunks +8 lines, -12 lines 0 comments Download
A + components/webcrypto/nss/rsa_oaep_nss.cc View 1 2 3 4 5 6 7 8 9 2 chunks +6 lines, -10 lines 0 comments Download
A + components/webcrypto/nss/rsa_ssa_nss.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -9 lines 0 comments Download
A + components/webcrypto/nss/sha_nss.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -9 lines 0 comments Download
A + components/webcrypto/nss/sym_key_nss.h View 1 2 3 4 5 6 7 8 9 2 chunks +3 lines, -7 lines 0 comments Download
A + components/webcrypto/nss/sym_key_nss.cc View 1 2 3 4 5 6 7 8 9 2 chunks +7 lines, -11 lines 0 comments Download
A + components/webcrypto/nss/util_nss.h View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -7 lines 0 comments Download
A + components/webcrypto/nss/util_nss.cc View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -7 lines 0 comments Download
A + components/webcrypto/openssl/aes_algorithm_openssl.h View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -8 lines 0 comments Download
A + components/webcrypto/openssl/aes_algorithm_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +7 lines, -11 lines 0 comments Download
A + components/webcrypto/openssl/aes_cbc_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +6 lines, -10 lines 0 comments Download
A + components/webcrypto/openssl/aes_ctr_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +6 lines, -10 lines 0 comments Download
A + components/webcrypto/openssl/aes_gcm_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +6 lines, -10 lines 0 comments Download
A + components/webcrypto/openssl/aes_kw_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -9 lines 0 comments Download
A + components/webcrypto/openssl/ec_algorithm_openssl.h View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -8 lines 0 comments Download
A + components/webcrypto/openssl/ec_algorithm_openssl.cc View 1 2 3 4 5 6 7 8 9 3 chunks +8 lines, -12 lines 0 comments Download
A + components/webcrypto/openssl/ecdh_openssl.cc View 1 2 3 4 5 6 7 8 9 3 chunks +8 lines, -12 lines 0 comments Download
A + components/webcrypto/openssl/ecdsa_openssl.cc View 1 2 3 4 5 6 7 8 9 3 chunks +8 lines, -12 lines 0 comments Download
A + components/webcrypto/openssl/hkdf_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +6 lines, -10 lines 0 comments Download
A + components/webcrypto/openssl/hmac_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +7 lines, -11 lines 0 comments Download
A + components/webcrypto/openssl/key_openssl.h View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -7 lines 0 comments Download
A + components/webcrypto/openssl/key_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -8 lines 0 comments Download
A + components/webcrypto/openssl/pbkdf2_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +6 lines, -10 lines 0 comments Download
A + components/webcrypto/openssl/rsa_hashed_algorithm_openssl.h View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -8 lines 0 comments Download
A + components/webcrypto/openssl/rsa_hashed_algorithm_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +8 lines, -12 lines 0 comments Download
A + components/webcrypto/openssl/rsa_oaep_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -9 lines 0 comments Download
A + components/webcrypto/openssl/rsa_pss_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +3 lines, -7 lines 0 comments Download
A + components/webcrypto/openssl/rsa_sign_openssl.h View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -7 lines 0 comments Download
A + components/webcrypto/openssl/rsa_sign_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -9 lines 0 comments Download
A + components/webcrypto/openssl/rsa_ssa_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +3 lines, -7 lines 0 comments Download
A + components/webcrypto/openssl/sha_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -9 lines 0 comments Download
A + components/webcrypto/openssl/util_openssl.h View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -7 lines 0 comments Download
A + components/webcrypto/openssl/util_openssl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +7 lines, -11 lines 0 comments Download
A + components/webcrypto/platform_crypto.h View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -7 lines 0 comments Download
A + components/webcrypto/status.h View 1 2 3 4 5 6 7 8 9 3 chunks +4 lines, -9 lines 0 comments Download
A + components/webcrypto/status.cc View 1 2 3 4 5 6 7 8 9 2 chunks +1 line, -5 lines 0 comments Download
A + components/webcrypto/test/aes_cbc_unittest.cc View 1 2 3 4 5 6 7 8 9 3 chunks +7 lines, -11 lines 0 comments Download
A + components/webcrypto/test/aes_ctr_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -9 lines 0 comments Download
A + components/webcrypto/test/aes_gcm_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -9 lines 0 comments Download
A + components/webcrypto/test/aes_kw_unittest.cc View 1 2 3 4 5 6 7 8 9 4 chunks +8 lines, -12 lines 0 comments Download
A + components/webcrypto/test/ecdh_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +7 lines, -12 lines 0 comments Download
A + components/webcrypto/test/ecdsa_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +6 lines, -10 lines 0 comments Download
A + components/webcrypto/test/hmac_unittest.cc View 1 2 3 4 5 6 7 8 9 3 chunks +11 lines, -16 lines 0 comments Download
A + components/webcrypto/test/rsa_oaep_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +6 lines, -10 lines 0 comments Download
A + components/webcrypto/test/rsa_pss_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +6 lines, -10 lines 0 comments Download
A + components/webcrypto/test/rsa_ssa_unittest.cc View 1 2 3 4 5 6 7 8 9 6 chunks +26 lines, -36 lines 0 comments Download
A + components/webcrypto/test/sha_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -9 lines 0 comments Download
A + components/webcrypto/test/status_unittest.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -9 lines 0 comments Download
A + components/webcrypto/test/test_helpers.h View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -7 lines 0 comments Download
A + components/webcrypto/test/test_helpers.cc View 1 2 3 4 5 6 7 8 9 5 chunks +13 lines, -15 lines 0 comments Download
A components/webcrypto/webcrypto.gyp View 1 2 3 4 5 6 7 8 9 1 chunk +131 lines, -0 lines 0 comments Download
A + components/webcrypto/webcrypto_impl.h View 1 2 3 4 5 6 7 8 9 3 chunks +5 lines, -5 lines 0 comments Download
A + components/webcrypto/webcrypto_impl.cc View 1 2 3 4 5 6 7 8 9 3 chunks +8 lines, -8 lines 0 comments Download
A + components/webcrypto/webcrypto_util.h View 1 2 3 4 5 6 7 8 9 2 chunks +8 lines, -14 lines 0 comments Download
A + components/webcrypto/webcrypto_util.cc View 1 2 3 4 5 6 7 8 9 3 chunks +6 lines, -10 lines 0 comments Download
M content/child/BUILD.gn View 1 2 3 4 5 6 7 8 9 2 chunks +1 line, -10 lines 0 comments Download
M content/child/DEPS View 1 2 3 4 5 6 7 8 9 1 chunk +4 lines, -0 lines 0 comments Download
M content/child/blink_platform_impl.h View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -2 lines 0 comments Download
D content/child/webcrypto/OWNERS View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -2 lines 0 comments Download
D content/child/webcrypto/PRESUBMIT.py View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -14 lines 0 comments Download
D content/child/webcrypto/algorithm_dispatch.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -141 lines 0 comments Download
D content/child/webcrypto/algorithm_dispatch.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -347 lines 0 comments Download
D content/child/webcrypto/algorithm_implementation.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -226 lines 0 comments Download
D content/child/webcrypto/algorithm_implementation.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -201 lines 0 comments Download
D content/child/webcrypto/algorithm_registry.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -32 lines 0 comments Download
D content/child/webcrypto/algorithm_registry.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -106 lines 0 comments Download
D content/child/webcrypto/crypto_data.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -49 lines 0 comments Download
D content/child/webcrypto/crypto_data.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -35 lines 0 comments Download
D content/child/webcrypto/generate_key_result.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -60 lines 0 comments Download
D content/child/webcrypto/generate_key_result.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -63 lines 0 comments Download
D content/child/webcrypto/jwk.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -255 lines 0 comments Download
D content/child/webcrypto/jwk.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -622 lines 0 comments Download
D content/child/webcrypto/nss/aes_algorithm_nss.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -89 lines 0 comments Download
D content/child/webcrypto/nss/aes_algorithm_nss.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -145 lines 0 comments Download
D content/child/webcrypto/nss/aes_cbc_nss.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -124 lines 0 comments Download
D content/child/webcrypto/nss/aes_gcm_nss.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -186 lines 0 comments Download
D content/child/webcrypto/nss/aes_kw_nss.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -190 lines 0 comments Download
D content/child/webcrypto/nss/hmac_nss.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -265 lines 0 comments Download
D content/child/webcrypto/nss/key_nss.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -109 lines 0 comments Download
D content/child/webcrypto/nss/key_nss.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -89 lines 0 comments Download
D content/child/webcrypto/nss/rsa_hashed_algorithm_nss.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -103 lines 0 comments Download
D content/child/webcrypto/nss/rsa_hashed_algorithm_nss.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -862 lines 0 comments Download
D content/child/webcrypto/nss/rsa_oaep_nss.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -231 lines 0 comments Download
D content/child/webcrypto/nss/rsa_ssa_nss.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -137 lines 0 comments Download
D content/child/webcrypto/nss/sha_nss.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -160 lines 0 comments Download
D content/child/webcrypto/nss/sym_key_nss.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -38 lines 0 comments Download
D content/child/webcrypto/nss/sym_key_nss.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -80 lines 0 comments Download
D content/child/webcrypto/nss/util_nss.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -116 lines 0 comments Download
D content/child/webcrypto/nss/util_nss.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -117 lines 0 comments Download
D content/child/webcrypto/openssl/aes_algorithm_openssl.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -82 lines 0 comments Download
D content/child/webcrypto/openssl/aes_algorithm_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -142 lines 0 comments Download
D content/child/webcrypto/openssl/aes_cbc_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -133 lines 0 comments Download
D content/child/webcrypto/openssl/aes_ctr_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -272 lines 0 comments Download
D content/child/webcrypto/openssl/aes_gcm_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -84 lines 0 comments Download
D content/child/webcrypto/openssl/aes_kw_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -92 lines 0 comments Download
D content/child/webcrypto/openssl/ec_algorithm_openssl.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -86 lines 0 comments Download
D content/child/webcrypto/openssl/ec_algorithm_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -570 lines 0 comments Download
D content/child/webcrypto/openssl/ecdh_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -137 lines 0 comments Download
D content/child/webcrypto/openssl/ecdsa_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -270 lines 0 comments Download
D content/child/webcrypto/openssl/hkdf_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -124 lines 0 comments Download
D content/child/webcrypto/openssl/hmac_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -229 lines 0 comments Download
D content/child/webcrypto/openssl/key_openssl.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -83 lines 0 comments Download
D content/child/webcrypto/openssl/key_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -66 lines 0 comments Download
D content/child/webcrypto/openssl/pbkdf2_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -122 lines 0 comments Download
D content/child/webcrypto/openssl/rsa_hashed_algorithm_openssl.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -94 lines 0 comments Download
D content/child/webcrypto/openssl/rsa_hashed_algorithm_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -434 lines 0 comments Download
D content/child/webcrypto/openssl/rsa_oaep_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -150 lines 0 comments Download
D content/child/webcrypto/openssl/rsa_pss_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -64 lines 0 comments Download
D content/child/webcrypto/openssl/rsa_sign_openssl.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -44 lines 0 comments Download
D content/child/webcrypto/openssl/rsa_sign_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -150 lines 0 comments Download
D content/child/webcrypto/openssl/rsa_ssa_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -61 lines 0 comments Download
D content/child/webcrypto/openssl/sha_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -140 lines 0 comments Download
D content/child/webcrypto/openssl/util_openssl.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -105 lines 0 comments Download
D content/child/webcrypto/openssl/util_openssl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -255 lines 0 comments Download
D content/child/webcrypto/platform_crypto.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -44 lines 0 comments Download
D content/child/webcrypto/status.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -290 lines 0 comments Download
D content/child/webcrypto/status.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -368 lines 0 comments Download
D content/child/webcrypto/test/aes_cbc_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -571 lines 0 comments Download
D content/child/webcrypto/test/aes_ctr_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -199 lines 0 comments Download
D content/child/webcrypto/test/aes_gcm_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -248 lines 0 comments Download
D content/child/webcrypto/test/aes_kw_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -540 lines 0 comments Download
D content/child/webcrypto/test/ecdh_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -370 lines 0 comments Download
D content/child/webcrypto/test/ecdsa_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -379 lines 0 comments Download
D content/child/webcrypto/test/hmac_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -604 lines 0 comments Download
D content/child/webcrypto/test/rsa_oaep_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -571 lines 0 comments Download
D content/child/webcrypto/test/rsa_pss_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -261 lines 0 comments Download
D content/child/webcrypto/test/rsa_ssa_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -1053 lines 0 comments Download
D content/child/webcrypto/test/sha_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -85 lines 0 comments Download
D content/child/webcrypto/test/status_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -79 lines 0 comments Download
D content/child/webcrypto/test/test_helpers.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -212 lines 0 comments Download
D content/child/webcrypto/test/test_helpers.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -690 lines 0 comments Download
D content/child/webcrypto/webcrypto_impl.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -127 lines 0 comments Download
D content/child/webcrypto/webcrypto_impl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -791 lines 0 comments Download
D content/child/webcrypto/webcrypto_util.h View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -139 lines 0 comments Download
D content/child/webcrypto/webcrypto_util.cc View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -332 lines 0 comments Download
M content/content_child.gypi View 1 2 3 4 5 6 7 8 9 4 chunks +1 line, -89 lines 0 comments Download
M content/content_tests.gypi View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -14 lines 0 comments Download
D content/test/data/webcrypto/aes_cbc.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -328 lines 0 comments Download
D content/test/data/webcrypto/aes_ctr.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -82 lines 0 comments Download
D content/test/data/webcrypto/aes_gcm.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -61 lines 0 comments Download
D content/test/data/webcrypto/aes_kw.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -27 lines 0 comments Download
D content/test/data/webcrypto/bad_ec_keys.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -248 lines 0 comments Download
D content/test/data/webcrypto/bad_rsa_keys.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -310 lines 0 comments Download
D content/test/data/webcrypto/ec_private_keys.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -96 lines 0 comments Download
D content/test/data/webcrypto/ecdh.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -414 lines 0 comments Download
D content/test/data/webcrypto/ecdsa.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -163 lines 0 comments Download
D content/test/data/webcrypto/hmac.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -64 lines 0 comments Download
D content/test/data/webcrypto/pkcs1v15_sign.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -109 lines 0 comments Download
D content/test/data/webcrypto/rsa_oaep.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -71 lines 0 comments Download
D content/test/data/webcrypto/rsa_private_keys.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -191 lines 0 comments Download
D content/test/data/webcrypto/rsa_pss.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -58 lines 0 comments Download
D content/test/data/webcrypto/sha.json View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -72 lines 0 comments Download
M mojo/services/html_viewer/BUILD.gn View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M mojo/services/html_viewer/DEPS View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M mojo/services/html_viewer/blink_platform_impl.h View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -0 lines 0 comments Download
M mojo/services/html_viewer/blink_platform_impl.cc View 1 2 3 4 5 6 7 8 9 1 chunk +4 lines, -0 lines 0 comments Download

Messages

Total messages: 25 (9 generated)
Elliot Glaysher
Let's have a fight about naming. AFAIK, we don't want to put content/ stuff in ...
5 years, 8 months ago (2015-04-10 22:12:05 UTC) #2
Ben Goodger (Google)
Here is my backstory for src/things. I'm only half joking. Consider src/components. It is a ...
5 years, 8 months ago (2015-04-10 22:26:26 UTC) #3
jam
On 2015/04/10 22:26:26, Ben Goodger (Google) wrote: > Here is my backstory for src/things. I'm ...
5 years, 8 months ago (2015-04-13 14:34:26 UTC) #4
Elliot Glaysher
I have moved things to components/ and have gotten the gyp build working, too.
5 years, 8 months ago (2015-04-14 01:06:26 UTC) #5
jam
Can you send a PSA to chromium-dev to update the policy on src\components? i.e. something ...
5 years, 8 months ago (2015-04-14 14:47:12 UTC) #6
Elliot Glaysher
https://codereview.chromium.org/1077273002/diff/60001/content/child/DEPS File content/child/DEPS (right): https://codereview.chromium.org/1077273002/diff/60001/content/child/DEPS#newcode6 content/child/DEPS:6: "+components/tracing", It looks like someone already beat us to ...
5 years, 8 months ago (2015-04-14 23:44:49 UTC) #7
jam
lgtm https://codereview.chromium.org/1077273002/diff/60001/content/child/DEPS File content/child/DEPS (right): https://codereview.chromium.org/1077273002/diff/60001/content/child/DEPS#newcode6 content/child/DEPS:6: "+components/tracing", On 2015/04/14 23:44:49, Elliot Glaysher wrote: > ...
5 years, 8 months ago (2015-04-15 17:15:09 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1077273002/70001
5 years, 8 months ago (2015-04-15 17:19:07 UTC) #10
Elliot Glaysher
+jochen for third_party/Webkit/public/platform DEPS stamp.
5 years, 8 months ago (2015-04-15 17:24:42 UTC) #13
Elliot Glaysher
jam told me to tbr jochen
5 years, 8 months ago (2015-04-16 17:06:20 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1077273002/80001
5 years, 8 months ago (2015-04-16 17:07:21 UTC) #17
commit-bot: I haz the power
Try jobs failed on following builders: cast_shell_android on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/cast_shell_android/builds/1627) chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, ...
5 years, 8 months ago (2015-04-16 17:18:34 UTC) #19
jochen (gone - plz use gerrit)
Stampety stamp lgtm
5 years, 8 months ago (2015-04-16 17:35:13 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1077273002/90001
5 years, 8 months ago (2015-04-16 18:04:26 UTC) #23
commit-bot: I haz the power
Committed patchset #10 (id:90001)
5 years, 8 months ago (2015-04-17 00:52:00 UTC) #24
commit-bot: I haz the power
5 years, 8 months ago (2015-04-17 00:53:03 UTC) #25
Message was sent while issue was closed.
Patchset 10 (id:??) landed as
https://crrev.com/56f123297ad298113d9a2dc6ed4b7de37dad9e3b
Cr-Commit-Position: refs/heads/master@{#325571}

Powered by Google App Engine
This is Rietveld 408576698