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

Issue 2275763002: Blimp: add delta encoding family of functions (Closed)

Created:
4 years, 4 months ago by Kevin M
Modified:
4 years, 2 months ago
Reviewers:
nyquist, steimel, Wez, CJ
CC:
chromium-reviews, cbentzel+watch_chromium.org, anandc+watch-blimp_chromium.org, maniscalco+watch-blimp_chromium.org, sriramsr+watch-blimp_chromium.org, gcasto+watch-blimp_chromium.org, nyquist+watch-blimp_chromium.org, marcinjb+watch-blimp_chromium.org, jessicag+watch-blimp_chromium.org, kmarshall+watch-blimp_chromium.org, lethalantidote+watch-blimp_chromium.org, dtrainor+watch-blimp_chromium.org, shaktisahu+watch-blimp_chromium.org, khushalsagar+watch-blimp_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Blimp: add delta encoding family of functions Defines a suite of functions (DeltaEncode, DeltaDecode, SortAndDeltaEncode), which compute and apply deltas from sequences of arbitrary differentiable values. R=wez@chromium.org BUG= Committed: https://crrev.com/ce9e82beb97b01d15eaaf36db6deab6d19d31e0b Cr-Commit-Position: refs/heads/master@{#421889}

Patch Set 1 #

Patch Set 2 : using iterators! #

Patch Set 3 : . #

Patch Set 4 : compound structz! #

Patch Set 5 : comments, function pointers, renaming, oh my #

Patch Set 6 : clean up includes #

Total comments: 25

Patch Set 7 : wez feedback #

Total comments: 2

Patch Set 8 : wez feedback #

Patch Set 9 : fix overzealous search and replace #

Patch Set 10 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+281 lines, -0 lines) Patch
M blimp/net/BUILD.gn View 1 2 3 4 5 6 2 chunks +2 lines, -0 lines 0 comments Download
A blimp/net/delta_encoding.h View 1 2 3 4 5 6 7 8 1 chunk +124 lines, -0 lines 0 comments Download
A blimp/net/delta_encoding_unittest.cc View 1 2 3 4 5 6 1 chunk +155 lines, -0 lines 0 comments Download

Messages

Total messages: 36 (15 generated)
Kevin M
4 years, 4 months ago (2016-08-23 21:32:51 UTC) #1
Kevin M
PTAL!
4 years, 4 months ago (2016-08-24 17:37:16 UTC) #4
Kevin M
4 years, 4 months ago (2016-08-24 18:05:55 UTC) #6
CJ
lgtm Nifty. Thanks for writing this up!
4 years, 4 months ago (2016-08-24 20:47:17 UTC) #7
Kevin M
ping
4 years, 3 months ago (2016-08-26 19:16:41 UTC) #8
nyquist
https://codereview.chromium.org/2275763002/diff/100001/blimp/net/delta_encoding_unittest.cc File blimp/net/delta_encoding_unittest.cc (right): https://codereview.chromium.org/2275763002/diff/100001/blimp/net/delta_encoding_unittest.cc#newcode20 blimp/net/delta_encoding_unittest.cc:20: struct CompoundStruct { Could you add a clarifying comment ...
4 years, 3 months ago (2016-08-26 20:43:42 UTC) #9
Wez
Handy stuff! https://codereview.chromium.org/2275763002/diff/100001/blimp/net/delta_encoding.h File blimp/net/delta_encoding.h (right): https://codereview.chromium.org/2275763002/diff/100001/blimp/net/delta_encoding.h#newcode23 blimp/net/delta_encoding.h:23: // e.g. DeltaEncode([4, 1, 5]) => [1, ...
4 years, 3 months ago (2016-08-29 23:25:24 UTC) #10
Kevin M
https://codereview.chromium.org/2275763002/diff/100001/blimp/net/delta_encoding.h File blimp/net/delta_encoding.h (right): https://codereview.chromium.org/2275763002/diff/100001/blimp/net/delta_encoding.h#newcode23 blimp/net/delta_encoding.h:23: // e.g. DeltaEncode([4, 1, 5]) => [1, 3, 1] ...
4 years, 3 months ago (2016-08-30 19:06:33 UTC) #11
Kevin M
4 years, 3 months ago (2016-08-30 19:06:34 UTC) #12
Kevin M
ping
4 years, 3 months ago (2016-09-02 17:36:12 UTC) #13
Kevin M
4 years, 3 months ago (2016-09-02 18:12:33 UTC) #15
steimel
lgtm
4 years, 3 months ago (2016-09-02 19:58:57 UTC) #16
Wez
https://codereview.chromium.org/2275763002/diff/100001/blimp/net/delta_encoding.h File blimp/net/delta_encoding.h (right): https://codereview.chromium.org/2275763002/diff/100001/blimp/net/delta_encoding.h#newcode35 blimp/net/delta_encoding.h:35: inline T minus(const T& lhs, const T& rhs) { ...
4 years, 3 months ago (2016-09-02 20:01:09 UTC) #17
Kevin M
https://codereview.chromium.org/2275763002/diff/100001/blimp/net/delta_encoding.h File blimp/net/delta_encoding.h (right): https://codereview.chromium.org/2275763002/diff/100001/blimp/net/delta_encoding.h#newcode35 blimp/net/delta_encoding.h:35: inline T minus(const T& lhs, const T& rhs) { ...
4 years, 3 months ago (2016-09-02 21:12:44 UTC) #18
Kevin M
4 years, 3 months ago (2016-09-02 21:13:32 UTC) #19
nyquist
lgtm
4 years, 3 months ago (2016-09-13 15:46:45 UTC) #22
nyquist
Oh, by the way, could you fix the CL description by copying the subject of ...
4 years, 3 months ago (2016-09-13 15:52:19 UTC) #23
Kevin M
Done. Wez? :)
4 years, 3 months ago (2016-09-19 17:03:40 UTC) #25
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/2275763002/180001
4 years, 2 months ago (2016-09-29 18:04:08 UTC) #32
commit-bot: I haz the power
Committed patchset #10 (id:180001)
4 years, 2 months ago (2016-09-29 19:00:54 UTC) #34
commit-bot: I haz the power
4 years, 2 months ago (2016-09-29 19:03:08 UTC) #36
Message was sent while issue was closed.
Patchset 10 (id:??) landed as
https://crrev.com/ce9e82beb97b01d15eaaf36db6deab6d19d31e0b
Cr-Commit-Position: refs/heads/master@{#421889}

Powered by Google App Engine
This is Rietveld 408576698