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

Issue 1186863005: Add a ref-counted data holder to ArrayBufferContents (Closed)

Created:
5 years, 6 months ago by binji
Modified:
5 years, 5 months ago
CC:
arv+blink, blink-reviews, blink-reviews-bindings_chromium.org, blink-reviews-wtf_chromium.org, Rik, danakj, dshwang, drott+blinkwatch_chromium.org, krit, f(malita), jbroman, Justin Novosad, Mikhail, pdr+graphicswatchlist_chromium.org, rwlbuis, Stephen Chennney, vivekg_samsung, vivekg
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Target Ref:
refs/heads/master
Project:
blink
Visibility:
Public.

Description

Add a ref-counted data holder to ArrayBufferContents This is in preparation for adding the DOMSharedArrayBuffer object, which needs to be able to share allocated array memory between multiple WTF::ArrayBuffers. BUG=497295 R=jochen@chromium.org,haraken@chromium.org Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=198023

Patch Set 1 #

Total comments: 17

Patch Set 2 : fixes, clear -> neuter #

Total comments: 2

Patch Set 3 : separate transfer() + neuter() logic #

Total comments: 1

Patch Set 4 : add shareWith and shareContentsWith #

Total comments: 2

Patch Set 5 : type in ArrayBuffer::shareContentsWith #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+165 lines, -50 lines) Patch
M Source/bindings/templates/interface.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/tests/results/core/V8ArrayBuffer.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/platform/graphics/ImageBuffer.cpp View 1 2 3 2 chunks +2 lines, -1 line 0 comments Download
M Source/platform/graphics/gpu/DrawingBuffer.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/wtf/ArrayBuffer.h View 1 2 3 5 chunks +33 lines, -4 lines 0 comments Download
M Source/wtf/ArrayBuffer.cpp View 1 2 3 4 2 chunks +16 lines, -1 line 0 comments Download
M Source/wtf/ArrayBufferContents.h View 1 2 3 3 chunks +35 lines, -7 lines 0 comments Download
M Source/wtf/ArrayBufferContents.cpp View 1 2 3 2 chunks +75 lines, -34 lines 2 comments Download
M Source/wtf/ArrayBufferView.h View 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 26 (5 generated)
binji
Separated out from https://codereview.chromium.org/1097773004, PTAL
5 years, 6 months ago (2015-06-18 19:38:16 UTC) #1
haraken
Thanks for spliting the patch! https://codereview.chromium.org/1186863005/diff/1/Source/wtf/ArrayBufferContents.cpp File Source/wtf/ArrayBufferContents.cpp (right): https://codereview.chromium.org/1186863005/diff/1/Source/wtf/ArrayBufferContents.cpp#newcode60 Source/wtf/ArrayBufferContents.cpp:60: if (!data) { Avoid ...
5 years, 6 months ago (2015-06-19 12:05:12 UTC) #2
binji
My apologies if I'm misunderstanding your suggestions. https://codereview.chromium.org/1186863005/diff/1/Source/wtf/ArrayBufferContents.cpp File Source/wtf/ArrayBufferContents.cpp (right): https://codereview.chromium.org/1186863005/diff/1/Source/wtf/ArrayBufferContents.cpp#newcode60 Source/wtf/ArrayBufferContents.cpp:60: if (!data) ...
5 years, 6 months ago (2015-06-19 18:14:57 UTC) #3
haraken
> My apologies if I'm misunderstanding your suggestions. No, no, I was misunderstanding. Thanks to ...
5 years, 6 months ago (2015-06-20 00:59:31 UTC) #4
binji
https://codereview.chromium.org/1186863005/diff/20001/Source/wtf/ArrayBufferContents.cpp File Source/wtf/ArrayBufferContents.cpp (right): https://codereview.chromium.org/1186863005/diff/20001/Source/wtf/ArrayBufferContents.cpp#newcode86 Source/wtf/ArrayBufferContents.cpp:86: neuter(); On 2015/06/20 at 00:59:31, haraken wrote: > I'm ...
5 years, 6 months ago (2015-06-20 01:36:21 UTC) #5
haraken
On 2015/06/20 01:36:21, binji wrote: > https://codereview.chromium.org/1186863005/diff/20001/Source/wtf/ArrayBufferContents.cpp > File Source/wtf/ArrayBufferContents.cpp (right): > > https://codereview.chromium.org/1186863005/diff/20001/Source/wtf/ArrayBufferContents.cpp#newcode86 > ...
5 years, 6 months ago (2015-06-20 08:35:52 UTC) #6
binji
On 2015/06/20 at 08:35:52, haraken wrote: > Thanks, help me understand a bit more: > ...
5 years, 6 months ago (2015-06-22 17:17:34 UTC) #7
haraken
On 2015/06/22 17:17:34, binji wrote: > On 2015/06/20 at 08:35:52, haraken wrote: > > Thanks, ...
5 years, 6 months ago (2015-06-23 00:19:18 UTC) #8
binji
On 2015/06/23 at 00:19:18, haraken wrote: > On 2015/06/22 17:17:34, binji wrote: > > On ...
5 years, 6 months ago (2015-06-23 04:36:03 UTC) #9
kinuko
Drive-by nit comment (looking good in general, btw) https://codereview.chromium.org/1186863005/diff/40001/Source/wtf/ArrayBufferContents.cpp File Source/wtf/ArrayBufferContents.cpp (right): https://codereview.chromium.org/1186863005/diff/40001/Source/wtf/ArrayBufferContents.cpp#newcode83 Source/wtf/ArrayBufferContents.cpp:83: other.m_holder ...
5 years, 6 months ago (2015-06-23 10:44:37 UTC) #10
binji
On 2015/06/23 at 10:44:37, kinuko wrote: > Drive-by nit comment (looking good in general, btw) ...
5 years, 6 months ago (2015-06-23 19:12:18 UTC) #11
kinuko
Feels easier to follow, thanks. https://codereview.chromium.org/1186863005/diff/60001/Source/wtf/ArrayBuffer.cpp File Source/wtf/ArrayBuffer.cpp (right): https://codereview.chromium.org/1186863005/diff/60001/Source/wtf/ArrayBuffer.cpp#newcode80 Source/wtf/ArrayBuffer.cpp:80: m_contents.transfer(result); Did you mean ...
5 years, 6 months ago (2015-06-24 03:05:37 UTC) #13
binji
https://codereview.chromium.org/1186863005/diff/60001/Source/wtf/ArrayBuffer.cpp File Source/wtf/ArrayBuffer.cpp (right): https://codereview.chromium.org/1186863005/diff/60001/Source/wtf/ArrayBuffer.cpp#newcode80 Source/wtf/ArrayBuffer.cpp:80: m_contents.transfer(result); On 2015/06/24 at 03:05:36, kinuko wrote: > Did ...
5 years, 6 months ago (2015-06-24 04:41:36 UTC) #14
kinuko
thanks, non-owner lgtm https://codereview.chromium.org/1186863005/diff/80001/Source/wtf/ArrayBufferContents.cpp File Source/wtf/ArrayBufferContents.cpp (right): https://codereview.chromium.org/1186863005/diff/80001/Source/wtf/ArrayBufferContents.cpp#newcode128 Source/wtf/ArrayBufferContents.cpp:128: m_isShared = NotShared; Any reason we ...
5 years, 6 months ago (2015-06-24 06:59:08 UTC) #15
binji
https://codereview.chromium.org/1186863005/diff/80001/Source/wtf/ArrayBufferContents.cpp File Source/wtf/ArrayBufferContents.cpp (right): https://codereview.chromium.org/1186863005/diff/80001/Source/wtf/ArrayBufferContents.cpp#newcode128 Source/wtf/ArrayBufferContents.cpp:128: m_isShared = NotShared; On 2015/06/24 at 06:59:08, kinuko wrote: ...
5 years, 6 months ago (2015-06-24 17:52:43 UTC) #16
binji
jochen: can I get an OWNERS review for Source/bindings and Source/wtf?
5 years, 6 months ago (2015-06-25 19:34:14 UTC) #17
jochen (gone - plz use gerrit)
lgtm
5 years, 5 months ago (2015-06-26 14:55:11 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1186863005/80001
5 years, 5 months ago (2015-06-29 17:55:42 UTC) #21
commit-bot: I haz the power
Try jobs failed on following builders: win_blink_rel on tryserver.blink (JOB_FAILED, http://build.chromium.org/p/tryserver.blink/builders/win_blink_rel/builds/68666)
5 years, 5 months ago (2015-06-29 20:56:06 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1186863005/80001
5 years, 5 months ago (2015-06-29 21:21:03 UTC) #25
commit-bot: I haz the power
5 years, 5 months ago (2015-06-29 22:07:13 UTC) #26
Message was sent while issue was closed.
Committed patchset #5 (id:80001) as
https://src.chromium.org/viewvc/blink?view=rev&revision=198023

Powered by Google App Engine
This is Rietveld 408576698