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

Issue 1887013003: Blimp: Add BlobChannelSender implementation (Closed)

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

Description

Blimp: BlobChannelSender and bindings interface. This class is responsible for sending blobs to a remote receiver. The transport-specific details are delegated to a bindings object, the implementation of which is out of scope for this CL. R=wez@chromium.org,nyquist@chromium.org BUG=600719 Committed: https://crrev.com/66b30ed02476e009cfb27237cc217f05acf5096c Cr-Commit-Position: refs/heads/master@{#391567}

Patch Set 1 #

Patch Set 2 : Remove erroneous namespace #

Total comments: 28

Patch Set 3 : Wez feedback. #

Total comments: 15

Patch Set 4 : wez feedback #

Patch Set 5 : re-upload with async blobcache base CL #

Patch Set 6 : Sync-only! #

Total comments: 7

Patch Set 7 : wez feedback #

Patch Set 8 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+195 lines, -0 lines) Patch
M blimp/net/BUILD.gn View 1 2 3 4 5 6 7 2 chunks +3 lines, -0 lines 0 comments Download
A blimp/net/blob_channel/blob_channel_sender.h View 1 2 3 4 5 6 1 chunk +61 lines, -0 lines 0 comments Download
A blimp/net/blob_channel/blob_channel_sender.cc View 1 2 3 4 5 6 1 chunk +50 lines, -0 lines 0 comments Download
A blimp/net/blob_channel/blob_channel_sender_unittest.cc View 1 2 3 4 5 6 1 chunk +81 lines, -0 lines 0 comments Download

Messages

Total messages: 28 (11 generated)
Kevin M
4 years, 8 months ago (2016-04-14 22:37:35 UTC) #1
nyquist
lgtm https://codereview.chromium.org/1887013003/diff/20001/blimp/net/blob_channel/blob_channel_sender.h File blimp/net/blob_channel/blob_channel_sender.h (right): https://codereview.chromium.org/1887013003/diff/20001/blimp/net/blob_channel/blob_channel_sender.h#newcode24 blimp/net/blob_channel/blob_channel_sender.h:24: class BLIMP_NET_EXPORT BlobChannelSender { Should there be a ...
4 years, 8 months ago (2016-04-15 17:12:53 UTC) #4
Wez
https://codereview.chromium.org/1887013003/diff/20001/blimp/net/blob_channel/blob_channel_bindings.h File blimp/net/blob_channel/blob_channel_bindings.h (right): https://codereview.chromium.org/1887013003/diff/20001/blimp/net/blob_channel/blob_channel_bindings.h#newcode17 blimp/net/blob_channel/blob_channel_bindings.h:17: class BlobSenderBindings { This just looks like a BlobSender ...
4 years, 8 months ago (2016-04-15 17:15:17 UTC) #5
Kevin M
https://codereview.chromium.org/1887013003/diff/20001/blimp/net/blob_channel/blob_channel_bindings.h File blimp/net/blob_channel/blob_channel_bindings.h (right): https://codereview.chromium.org/1887013003/diff/20001/blimp/net/blob_channel/blob_channel_bindings.h#newcode17 blimp/net/blob_channel/blob_channel_bindings.h:17: class BlobSenderBindings { On 2016/04/15 17:15:16, Wez wrote: > ...
4 years, 8 months ago (2016-04-15 22:42:57 UTC) #6
Wez
https://codereview.chromium.org/1887013003/diff/40001/blimp/net/blob_channel/blob_channel_sender.cc File blimp/net/blob_channel/blob_channel_sender.cc (right): https://codereview.chromium.org/1887013003/diff/40001/blimp/net/blob_channel/blob_channel_sender.cc#newcode22 blimp/net/blob_channel/blob_channel_sender.cc:22: DCHECK(data.get()); nit: Just DCHECK(data) Do you also want to ...
4 years, 8 months ago (2016-04-19 00:01:57 UTC) #7
Kevin M
https://codereview.chromium.org/1887013003/diff/40001/blimp/net/blob_channel/blob_channel_sender.cc File blimp/net/blob_channel/blob_channel_sender.cc (right): https://codereview.chromium.org/1887013003/diff/40001/blimp/net/blob_channel/blob_channel_sender.cc#newcode22 blimp/net/blob_channel/blob_channel_sender.cc:22: DCHECK(data.get()); On 2016/04/19 00:01:57, Wez wrote: > nit: Just ...
4 years, 8 months ago (2016-04-19 23:39:23 UTC) #8
Kevin M
Kay-o, it's sync only now!
4 years, 8 months ago (2016-04-20 21:38:10 UTC) #9
Kevin M
Adding haibin to reviewer list.
4 years, 7 months ago (2016-05-03 21:05:11 UTC) #11
Wez
LGTM w/ nits https://codereview.chromium.org/1887013003/diff/40001/blimp/net/blob_channel/blob_channel_sender.h File blimp/net/blob_channel/blob_channel_sender.h (right): https://codereview.chromium.org/1887013003/diff/40001/blimp/net/blob_channel/blob_channel_sender.h#newcode41 blimp/net/blob_channel/blob_channel_sender.h:41: // Does nothing if there is ...
4 years, 7 months ago (2016-05-03 22:11:05 UTC) #12
Kevin M
https://codereview.chromium.org/1887013003/diff/100001/blimp/net/blob_channel/blob_channel_sender.cc File blimp/net/blob_channel/blob_channel_sender.cc (right): https://codereview.chromium.org/1887013003/diff/100001/blimp/net/blob_channel/blob_channel_sender.cc#newcode48 blimp/net/blob_channel/blob_channel_sender.cc:48: receiver_cache_contents_.insert(id); On 2016/05/03 22:11:05, Wez wrote: > nit: Suggest ...
4 years, 7 months ago (2016-05-03 22:42:57 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1887013003/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1887013003/120001
4 years, 7 months ago (2016-05-03 22:43:51 UTC) #16
haibinlu
4 years, 7 months ago (2016-05-03 23:49:36 UTC) #17
haibinlu
lgtm
4 years, 7 months ago (2016-05-03 23:50:48 UTC) #18
commit-bot: I haz the power
Failed to apply patch for blimp/common/blob_cache/mock_blob_cache.h: While running git apply --index -3 -p1; Falling back ...
4 years, 7 months ago (2016-05-03 23:55:47 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1887013003/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1887013003/140001
4 years, 7 months ago (2016-05-04 17:11:10 UTC) #24
commit-bot: I haz the power
Committed patchset #8 (id:140001)
4 years, 7 months ago (2016-05-04 18:22:13 UTC) #26
commit-bot: I haz the power
4 years, 7 months ago (2016-05-04 18:23:30 UTC) #28
Message was sent while issue was closed.
Patchset 8 (id:??) landed as
https://crrev.com/66b30ed02476e009cfb27237cc217f05acf5096c
Cr-Commit-Position: refs/heads/master@{#391567}

Powered by Google App Engine
This is Rietveld 408576698