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

Issue 2537133002: Update brotli to v1.0.0-snapshot. (Closed)

Created:
4 years ago by eustas
Modified:
4 years ago
CC:
chromium-reviews, cbentzel+watch_chromium.org, pkl (ping after 24h if needed), fuzzing_chromium.org, sdefresne+watch_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Update brotli to v1.0.0-snapshot. 4836af (20 May 2016) to 222564 (02 Dec 2016) BUG=641008 Committed: https://crrev.com/6ed4c41351b1b3f9de0613a5cb98cceb95654464 Cr-Commit-Position: refs/heads/master@{#438504}

Patch Set 1 #

Total comments: 22

Patch Set 2 : Deal with source size limits #

Patch Set 3 : Draft-fix-MSVC-warning #

Patch Set 4 : Fix C++ style and compressor invocation params. #

Patch Set 5 : Reroll previous windows warning fix. #

Patch Set 6 : Fix include path in net/ #

Patch Set 7 : Fix fuzzer #

Patch Set 8 : Pick-up windows warning fix #

Patch Set 9 : Trying to convince win_ng #

Patch Set 10 : Rebase #

Total comments: 12

Patch Set 11 : Rename 'out' variable #

Total comments: 1

Patch Set 12 : Fixed typo #

Unified diffs Side-by-side diffs Delta from patch set Stats (+17153 lines, -46364 lines) Patch
M chrome/browser/ui/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/webui/about_ui.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +20 lines, -13 lines 0 comments Download
M ios/chrome/browser/ui/webui/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M ios/chrome/browser/ui/webui/about_ui.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +20 lines, -12 lines 0 comments Download
M net/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M net/filter/brotli_source_stream.cc View 1 2 3 4 5 6 7 8 9 10 11 6 chunks +13 lines, -12 lines 0 comments Download
M testing/libfuzzer/fuzzers/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M testing/libfuzzer/fuzzers/brotli_fuzzer.cc View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +8 lines, -8 lines 0 comments Download
M third_party/brotli/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +55 lines, -31 lines 0 comments Download
A third_party/brotli/DEPS View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/brotli/LICENSE View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M third_party/brotli/README.chromium View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +3 lines, -10 lines 0 comments Download
M third_party/brotli/README.md View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +57 lines, -5 lines 0 comments Download
M third_party/brotli/brotli.gni View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
A third_party/brotli/common/constants.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +54 lines, -0 lines 0 comments Download
A + third_party/brotli/common/dictionary.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +10 lines, -18 lines 0 comments Download
A + third_party/brotli/common/dictionary.c View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +11 lines, -3 lines 0 comments Download
A + third_party/brotli/common/version.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +10 lines, -6 lines 0 comments Download
M third_party/brotli/dec/bit_reader.h View 1 2 3 4 5 6 7 8 9 10 11 11 chunks +25 lines, -48 lines 0 comments Download
M third_party/brotli/dec/bit_reader.c View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +6 lines, -6 lines 0 comments Download
M third_party/brotli/dec/context.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
D third_party/brotli/dec/decode.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -156 lines 0 comments Download
M third_party/brotli/dec/decode.c View 1 2 3 4 5 6 7 8 9 10 11 94 chunks +587 lines, -480 lines 0 comments Download
D third_party/brotli/dec/dictionary.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -38 lines 0 comments Download
D third_party/brotli/dec/dictionary.c View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -9466 lines 0 comments Download
M third_party/brotli/dec/huffman.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/brotli/dec/huffman.c View 1 2 3 4 5 6 7 8 9 10 11 7 chunks +28 lines, -26 lines 0 comments Download
M third_party/brotli/dec/port.h View 1 2 3 4 5 6 7 8 9 10 11 8 chunks +20 lines, -102 lines 0 comments Download
M third_party/brotli/dec/prefix.h View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +5 lines, -3 lines 0 comments Download
M third_party/brotli/dec/state.h View 1 2 3 4 5 6 7 8 9 10 11 8 chunks +33 lines, -26 lines 0 comments Download
M third_party/brotli/dec/state.c View 1 2 3 4 5 6 7 8 9 10 11 7 chunks +26 lines, -33 lines 0 comments Download
M third_party/brotli/dec/transform.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +2 lines, -2 lines 0 comments Download
D third_party/brotli/dec/types.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -38 lines 0 comments Download
M third_party/brotli/enc/backward_references.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +86 lines, -102 lines 0 comments Download
A third_party/brotli/enc/backward_references.c View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +922 lines, -0 lines 0 comments Download
D third_party/brotli/enc/backward_references.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -858 lines 0 comments Download
A third_party/brotli/enc/backward_references_inc.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +147 lines, -0 lines 0 comments Download
M third_party/brotli/enc/bit_cost.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +23 lines, -121 lines 0 comments Download
A + third_party/brotli/enc/bit_cost.c View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +17 lines, -23 lines 0 comments Download
A + third_party/brotli/enc/bit_cost_inc.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +80 lines, -114 lines 0 comments Download
A third_party/brotli/enc/block_encoder_inc.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +33 lines, -0 lines 0 comments Download
M third_party/brotli/enc/block_splitter.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +40 lines, -50 lines 0 comments Download
A third_party/brotli/enc/block_splitter.c View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +197 lines, -0 lines 0 comments Download
D third_party/brotli/enc/block_splitter.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -505 lines 0 comments Download
A + third_party/brotli/enc/block_splitter_inc.h View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +306 lines, -379 lines 0 comments Download
M third_party/brotli/enc/brotli_bit_stream.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +95 lines, -167 lines 0 comments Download
A + third_party/brotli/enc/brotli_bit_stream.c View 1 2 3 4 5 6 7 8 9 10 11 16 chunks +854 lines, -694 lines 0 comments Download
D third_party/brotli/enc/brotli_bit_stream.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -1181 lines 0 comments Download
M third_party/brotli/enc/cluster.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +23 lines, -305 lines 0 comments Download
A + third_party/brotli/enc/cluster.c View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +35 lines, -27 lines 0 comments Download
A + third_party/brotli/enc/cluster_inc.h View 1 2 3 4 5 6 7 8 9 10 11 6 chunks +197 lines, -212 lines 0 comments Download
M third_party/brotli/enc/command.h View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +92 lines, -77 lines 0 comments Download
M third_party/brotli/enc/compress_fragment.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +50 lines, -37 lines 0 comments Download
A + third_party/brotli/enc/compress_fragment.c View 1 2 3 4 5 6 7 8 9 10 11 8 chunks +465 lines, -383 lines 0 comments Download
D third_party/brotli/enc/compress_fragment.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -701 lines 0 comments Download
M third_party/brotli/enc/compress_fragment_two_pass.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +39 lines, -26 lines 0 comments Download
A + third_party/brotli/enc/compress_fragment_two_pass.c View 1 2 3 4 5 6 7 8 9 10 11 6 chunks +339 lines, -273 lines 0 comments Download
D third_party/brotli/enc/compress_fragment_two_pass.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -524 lines 0 comments Download
D third_party/brotli/enc/compressor.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -15 lines 0 comments Download
M third_party/brotli/enc/context.h View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +102 lines, -96 lines 0 comments Download
D third_party/brotli/enc/dictionary.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -41 lines 0 comments Download
D third_party/brotli/enc/dictionary.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -9466 lines 0 comments Download
M third_party/brotli/enc/dictionary_hash.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +9 lines, -5 lines 0 comments Download
D third_party/brotli/enc/encode.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -209 lines 0 comments Download
A + third_party/brotli/enc/encode.c View 1 2 3 4 5 6 7 8 9 10 11 12 chunks +1323 lines, -802 lines 0 comments Download
D third_party/brotli/enc/encode.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -1180 lines 0 comments Download
D third_party/brotli/enc/encode_parallel.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -28 lines 0 comments Download
D third_party/brotli/enc/encode_parallel.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -279 lines 0 comments Download
M third_party/brotli/enc/entropy_encode.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +107 lines, -89 lines 0 comments Download
A + third_party/brotli/enc/entropy_encode.c View 1 2 3 4 5 6 7 8 9 10 11 15 chunks +189 lines, -168 lines 0 comments Download
D third_party/brotli/enc/entropy_encode.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -480 lines 0 comments Download
M third_party/brotli/enc/entropy_encode_static.h View 1 2 3 4 5 6 7 8 9 10 11 8 chunks +29 lines, -62 lines 0 comments Download
M third_party/brotli/enc/fast_log.h View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +26 lines, -20 lines 0 comments Download
M third_party/brotli/enc/find_match_length.h View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +26 lines, -23 lines 0 comments Download
M third_party/brotli/enc/hash.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +625 lines, -871 lines 0 comments Download
A third_party/brotli/enc/hash_forgetful_chain_inc.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +250 lines, -0 lines 0 comments Download
A third_party/brotli/enc/hash_longest_match_inc.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +241 lines, -0 lines 0 comments Download
A third_party/brotli/enc/hash_longest_match_quickly_inc.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +230 lines, -0 lines 0 comments Download
M third_party/brotli/enc/histogram.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +49 lines, -83 lines 0 comments Download
A + third_party/brotli/enc/histogram.c View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +68 lines, -40 lines 0 comments Download
D third_party/brotli/enc/histogram.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -67 lines 0 comments Download
A third_party/brotli/enc/histogram_inc.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +51 lines, -0 lines 0 comments Download
M third_party/brotli/enc/literal_cost.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +16 lines, -10 lines 0 comments Download
A + third_party/brotli/enc/literal_cost.c View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +106 lines, -93 lines 0 comments Download
D third_party/brotli/enc/literal_cost.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -165 lines 0 comments Download
A + third_party/brotli/enc/memory.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +43 lines, -29 lines 0 comments Download
A third_party/brotli/enc/memory.c View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +181 lines, -0 lines 0 comments Download
M third_party/brotli/enc/metablock.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +87 lines, -57 lines 0 comments Download
A third_party/brotli/enc/metablock.c View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +516 lines, -0 lines 0 comments Download
D third_party/brotli/enc/metablock.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -539 lines 0 comments Download
A third_party/brotli/enc/metablock_inc.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +183 lines, -0 lines 0 comments Download
M third_party/brotli/enc/port.h View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +65 lines, -47 lines 0 comments Download
M third_party/brotli/enc/prefix.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +36 lines, -61 lines 0 comments Download
A third_party/brotli/enc/quality.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +134 lines, -0 lines 0 comments Download
M third_party/brotli/enc/ringbuffer.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +137 lines, -122 lines 0 comments Download
M third_party/brotli/enc/static_dict.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +23 lines, -18 lines 0 comments Download
A + third_party/brotli/enc/static_dict.c View 1 2 3 4 5 6 7 8 9 10 11 7 chunks +162 lines, -139 lines 0 comments Download
D third_party/brotli/enc/static_dict.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -455 lines 0 comments Download
M third_party/brotli/enc/static_dict_lut.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +5847 lines, -4110 lines 0 comments Download
D third_party/brotli/enc/static_dict_lut2.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -7934 lines 0 comments Download
D third_party/brotli/enc/streams.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -121 lines 0 comments Download
D third_party/brotli/enc/streams.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -114 lines 0 comments Download
D third_party/brotli/enc/transform.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -248 lines 0 comments Download
D third_party/brotli/enc/types.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -29 lines 0 comments Download
M third_party/brotli/enc/utf8_util.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +16 lines, -9 lines 0 comments Download
A + third_party/brotli/enc/utf8_util.c View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +22 lines, -20 lines 0 comments Download
D third_party/brotli/enc/utf8_util.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -83 lines 0 comments Download
M third_party/brotli/enc/write_bits.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +49 lines, -43 lines 0 comments Download
A third_party/brotli/include/brotli/decode.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +334 lines, -0 lines 0 comments Download
A third_party/brotli/include/brotli/encode.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +428 lines, -0 lines 0 comments Download
A + third_party/brotli/include/brotli/port.h View 1 2 3 4 5 6 7 8 9 10 11 6 chunks +58 lines, -161 lines 0 comments Download
A + third_party/brotli/include/brotli/types.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +63 lines, -11 lines 0 comments Download
A + third_party/brotli/tools/bro.c View 1 2 3 4 5 6 7 8 9 10 11 10 chunks +264 lines, -72 lines 0 comments Download
D third_party/brotli/tools/bro.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -329 lines 0 comments Download
M third_party/ots/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M third_party/woff2/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -5 lines 0 comments Download
M third_party/woff2/README.chromium View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
M third_party/woff2/src/woff2_dec.cc View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +5 lines, -4 lines 0 comments Download

Messages

Total messages: 76 (49 generated)
eustas
This update brings new API, and more conservative memory allocation behaviour.
4 years ago (2016-11-29 16:40:41 UTC) #1
eustas
kcc@chromium.org: Please review changes in testing/ marq@chromium.org: Please review changes in about_ui.cc msw@chromium.org: Please review ...
4 years ago (2016-11-29 16:41:55 UTC) #3
eustas
bashi@chromium.org: Please review changes in ots/
4 years ago (2016-11-29 16:45:17 UTC) #5
msw
I'm not used to seeing manual updating of third-party files, don't we usually roll DEPS? ...
4 years ago (2016-11-29 19:28:40 UTC) #6
eustas
On 2016/11/29 19:28:40, msw wrote: > I'm not used to seeing manual updating of third-party ...
4 years ago (2016-11-29 23:19:07 UTC) #7
eustas
https://codereview.chromium.org/2537133002/diff/1/chrome/browser/ui/webui/about_ui.cc File chrome/browser/ui/webui/about_ui.cc (right): https://codereview.chromium.org/2537133002/diff/1/chrome/browser/ui/webui/about_ui.cc#newcode11 chrome/browser/ui/webui/about_ui.cc:11: #include <brotli/decode.h> On 2016/11/29 19:28:40, msw wrote: > Why ...
4 years ago (2016-11-29 23:19:23 UTC) #8
bashi
ots/ rubber-stamp LGTM
4 years ago (2016-11-29 23:34:53 UTC) #9
msw
I'm going to have to defer to another reviewer, sorry. https://codereview.chromium.org/2537133002/diff/1/chrome/browser/ui/webui/about_ui.cc File chrome/browser/ui/webui/about_ui.cc (right): https://codereview.chromium.org/2537133002/diff/1/chrome/browser/ui/webui/about_ui.cc#newcode11 ...
4 years ago (2016-11-29 23:35:59 UTC) #10
Kunihiko Sakamoto
I've checked CQ dry run, and seeing compilation errors. It's a good idea to make ...
4 years ago (2016-11-30 06:17:31 UTC) #15
eustas
On 2016/11/30 06:17:31, Kunihiko Sakamoto wrote: > It's a good idea to make sure your ...
4 years ago (2016-11-30 08:42:52 UTC) #18
marq (ping after 24h)
I have some C++ style comments for the ios/ files I am an OWNER of, ...
4 years ago (2016-11-30 09:17:42 UTC) #21
Randy Smith (Not in Mondays)
net/ LGTM.
4 years ago (2016-11-30 15:27:39 UTC) #32
eustas
CQ-dry-run is green now. Thanks for the patience. PTAL. https://codereview.chromium.org/2537133002/diff/1/chrome/browser/ui/webui/about_ui.cc File chrome/browser/ui/webui/about_ui.cc (right): https://codereview.chromium.org/2537133002/diff/1/chrome/browser/ui/webui/about_ui.cc#newcode11 chrome/browser/ui/webui/about_ui.cc:11: ...
4 years ago (2016-12-02 11:49:42 UTC) #48
Kunihiko Sakamoto
https://codereview.chromium.org/2537133002/diff/90001/third_party/brotli/BUILD.gn File third_party/brotli/BUILD.gn (right): https://codereview.chromium.org/2537133002/diff/90001/third_party/brotli/BUILD.gn#newcode20 third_party/brotli/BUILD.gn:20: public_configs = [ ":includes" ] Since you're using #include ...
4 years ago (2016-12-05 02:27:00 UTC) #53
eustas
https://codereview.chromium.org/2537133002/diff/90001/third_party/brotli/BUILD.gn File third_party/brotli/BUILD.gn (right): https://codereview.chromium.org/2537133002/diff/90001/third_party/brotli/BUILD.gn#newcode20 third_party/brotli/BUILD.gn:20: public_configs = [ ":includes" ] On 2016/12/05 02:27:00, Kunihiko ...
4 years ago (2016-12-05 14:15:01 UTC) #55
Kunihiko Sakamoto
brotli/ and woff2/ lgtm
4 years ago (2016-12-06 01:55:50 UTC) #56
marq (ping after 24h)
ios/ LGTM
4 years ago (2016-12-07 10:09:44 UTC) #57
marq (ping after 24h)
https://codereview.chromium.org/2537133002/diff/90001/ios/chrome/browser/ui/webui/about_ui.cc File ios/chrome/browser/ui/webui/about_ui.cc (right): https://codereview.chromium.org/2537133002/diff/90001/ios/chrome/browser/ui/webui/about_ui.cc#newcode148 ios/chrome/browser/ui/webui/about_ui.cc:148: const uint8_t* out = Can you please use a ...
4 years ago (2016-12-07 10:11:40 UTC) #58
eustas
https://codereview.chromium.org/2537133002/diff/90001/ios/chrome/browser/ui/webui/about_ui.cc File ios/chrome/browser/ui/webui/about_ui.cc (right): https://codereview.chromium.org/2537133002/diff/90001/ios/chrome/browser/ui/webui/about_ui.cc#newcode148 ios/chrome/browser/ui/webui/about_ui.cc:148: const uint8_t* out = On 2016/12/07 10:11:40, marq wrote: ...
4 years ago (2016-12-07 12:34:28 UTC) #59
eustas
kcc@, please take a look at testing/libfuzzer/brotli_fuzzer.cc (now it is the same as used in ...
4 years ago (2016-12-12 09:31:19 UTC) #64
eustas
msw@, PTAL; changes in about_ui.cc are exactly the same in ios/ and ./
4 years ago (2016-12-12 09:34:10 UTC) #65
msw
c/b/ui rubber stamp lgtm with a nit https://codereview.chromium.org/2537133002/diff/100001/chrome/browser/ui/webui/about_ui.cc File chrome/browser/ui/webui/about_ui.cc (right): https://codereview.chromium.org/2537133002/diff/100001/chrome/browser/ui/webui/about_ui.cc#newcode776 chrome/browser/ui/webui/about_ui.cc:776: size_t output_size_remianing ...
4 years ago (2016-12-12 19:29:08 UTC) #66
kcc2
On 2016/12/12 09:31:19, eustas wrote: > kcc@, please take a look at testing/libfuzzer/brotli_fuzzer.cc > (now ...
4 years ago (2016-12-12 19:33:02 UTC) #67
eustas
On 2016/12/12 19:29:08, msw wrote: > c/b/ui rubber stamp lgtm with a nit > > ...
4 years ago (2016-12-14 12:47:58 UTC) #68
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2537133002/110001
4 years ago (2016-12-14 12:48:46 UTC) #71
commit-bot: I haz the power
Committed patchset #12 (id:110001)
4 years ago (2016-12-14 13:54:13 UTC) #74
commit-bot: I haz the power
4 years ago (2016-12-14 13:56:27 UTC) #76
Message was sent while issue was closed.
Patchset 12 (id:??) landed as
https://crrev.com/6ed4c41351b1b3f9de0613a5cb98cceb95654464
Cr-Commit-Position: refs/heads/master@{#438504}

Powered by Google App Engine
This is Rietveld 408576698