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

Issue 1162773003: [Blob] Dependencies for blob storage testing (Closed)

Created:
5 years, 6 months ago by dmurph
Modified:
5 years, 6 months ago
CC:
blink-reviews, dglazkov+blink
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Target Ref:
refs/heads/master
Project:
blink
Visibility:
Public.

Description

[Blob] Dependencies for blob storage testing * Added a way to populate the memory in a WebThreadSafeData for testing support in content/ * Added new blob registration method using the Builder pattern in the WebBlobRegistry class. BUG=375297 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=197142

Patch Set 1 #

Total comments: 12

Patch Set 2 : Comments #

Total comments: 1

Patch Set 3 : Simplifications #

Total comments: 2

Patch Set 4 : Builder for WebBlobRegistry #

Total comments: 3

Patch Set 5 : Added build() method #

Unified diffs Side-by-side diffs Delta from patch set Stats (+61 lines, -0 lines) Patch
M Source/platform/exported/WebThreadSafeData.cpp View 1 2 3 2 chunks +17 lines, -0 lines 0 comments Download
M public/platform/WebBlobData.h View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M public/platform/WebBlobRegistry.h View 1 2 3 4 2 chunks +35 lines, -0 lines 0 comments Download
M public/platform/WebThreadSafeData.h View 1 2 3 2 chunks +5 lines, -0 lines 0 comments Download

Messages

Total messages: 20 (5 generated)
dmurph
Hey Jochen & Josh Can you please take a quick look at this CL? It's ...
5 years, 6 months ago (2015-06-02 17:58:32 UTC) #2
jsbell
https://codereview.chromium.org/1162773003/diff/1/Source/platform/exported/WebThreadSafeData.cpp File Source/platform/exported/WebThreadSafeData.cpp (right): https://codereview.chromium.org/1162773003/diff/1/Source/platform/exported/WebThreadSafeData.cpp#newcode51 Source/platform/exported/WebThreadSafeData.cpp:51: raw->mutableData()->appendRange(data, data + length); could also just be: append(data, ...
5 years, 6 months ago (2015-06-02 19:30:56 UTC) #3
dmurph
https://codereview.chromium.org/1162773003/diff/1/Source/platform/exported/WebThreadSafeData.cpp File Source/platform/exported/WebThreadSafeData.cpp (right): https://codereview.chromium.org/1162773003/diff/1/Source/platform/exported/WebThreadSafeData.cpp#newcode51 Source/platform/exported/WebThreadSafeData.cpp:51: raw->mutableData()->appendRange(data, data + length); On 2015/06/02 at 19:30:55, jsbell ...
5 years, 6 months ago (2015-06-02 20:17:41 UTC) #4
dmurph
+pdr as reviewer as he is in the same time zone :)
5 years, 6 months ago (2015-06-02 20:19:49 UTC) #7
pdr.
https://codereview.chromium.org/1162773003/diff/20001/public/platform/WebThreadSafeData.h File public/platform/WebThreadSafeData.h (right): https://codereview.chromium.org/1162773003/diff/20001/public/platform/WebThreadSafeData.h#newcode53 public/platform/WebThreadSafeData.h:53: // For testing use only. Other than two instances ...
5 years, 6 months ago (2015-06-02 20:26:16 UTC) #8
dmurph
This patch is probably going to be redone to do: * Make WebBlobData pure virtual ...
5 years, 6 months ago (2015-06-02 22:50:24 UTC) #9
jochen (gone - plz use gerrit)
https://codereview.chromium.org/1162773003/diff/40001/public/platform/WebBlobData.h File public/platform/WebBlobData.h (right): https://codereview.chromium.org/1162773003/diff/40001/public/platform/WebBlobData.h#newcode51 public/platform/WebBlobData.h:51: enum Type { TypeData, TypeFile, TypeBlob, TypeFileSystemURL } type; ...
5 years, 6 months ago (2015-06-03 10:43:30 UTC) #10
dmurph
https://codereview.chromium.org/1162773003/diff/40001/public/platform/WebBlobData.h File public/platform/WebBlobData.h (right): https://codereview.chromium.org/1162773003/diff/40001/public/platform/WebBlobData.h#newcode51 public/platform/WebBlobData.h:51: enum Type { TypeData, TypeFile, TypeBlob, TypeFileSystemURL } type; ...
5 years, 6 months ago (2015-06-03 17:54:30 UTC) #11
jochen (gone - plz use gerrit)
On 2015/06/03 at 17:54:30, dmurph wrote: > https://codereview.chromium.org/1162773003/diff/40001/public/platform/WebBlobData.h > File public/platform/WebBlobData.h (right): > > https://codereview.chromium.org/1162773003/diff/40001/public/platform/WebBlobData.h#newcode51 ...
5 years, 6 months ago (2015-06-05 12:09:09 UTC) #12
dmurph
Hey guys, PTAL again. I changed the WebBlobRegistry interface to have a construction pattern. This ...
5 years, 6 months ago (2015-06-11 23:42:32 UTC) #13
jochen (gone - plz use gerrit)
lgtm once jsbell is happy https://codereview.chromium.org/1162773003/diff/60001/public/platform/WebBlobRegistry.h File public/platform/WebBlobRegistry.h (right): https://codereview.chromium.org/1162773003/diff/60001/public/platform/WebBlobRegistry.h#newcode60 public/platform/WebBlobRegistry.h:60: virtual ~Builder() { } ...
5 years, 6 months ago (2015-06-12 08:39:23 UTC) #14
jsbell
lgtm https://codereview.chromium.org/1162773003/diff/60001/public/platform/WebBlobRegistry.h File public/platform/WebBlobRegistry.h (right): https://codereview.chromium.org/1162773003/diff/60001/public/platform/WebBlobRegistry.h#newcode60 public/platform/WebBlobRegistry.h:60: virtual ~Builder() { } On 2015/06/12 08:39:23, jochen ...
5 years, 6 months ago (2015-06-12 16:43:43 UTC) #15
dmurph
jsbell: PTAL, I added a 'build' method instead of relying on the destructor. I also ...
5 years, 6 months ago (2015-06-12 19:06:48 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1162773003/80001
5 years, 6 months ago (2015-06-15 20:33:38 UTC) #19
commit-bot: I haz the power
5 years, 6 months ago (2015-06-15 22:12:35 UTC) #20
Message was sent while issue was closed.
Committed patchset #5 (id:80001) as
https://src.chromium.org/viewvc/blink?view=rev&revision=197142

Powered by Google App Engine
This is Rietveld 408576698