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

Issue 780793002: Make CryptoResultImpl not to use WeakPtr. (Closed)

Created:
6 years ago by tasak
Modified:
6 years ago
CC:
blink-reviews, blink-reviews-bindings_chromium.org, arv+blink
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Project:
blink
Visibility:
Public.

Description

Make CryptoResultImpl not to use WeakPtr. To move ScriptPromiseResolver on oilpan heap, need to remove WeakPtr. BUG= Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=187118

Patch Set 1 : #

Total comments: 4

Patch Set 2 : #

Total comments: 10

Patch Set 3 : #

Total comments: 14

Patch Set 4 : #

Total comments: 13

Patch Set 5 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+38 lines, -17 lines) Patch
M Source/modules/crypto/CryptoResultImpl.h View 1 2 3 4 1 chunk +5 lines, -2 lines 0 comments Download
M Source/modules/crypto/CryptoResultImpl.cpp View 1 2 3 4 6 chunks +33 lines, -15 lines 0 comments Download

Messages

Total messages: 31 (6 generated)
tasak
Would you review this CL? https://codereview.chromium.org/780793002/diff/20001/Source/bindings/core/v8/ScriptPromiseResolver.h File Source/bindings/core/v8/ScriptPromiseResolver.h (right): https://codereview.chromium.org/780793002/diff/20001/Source/bindings/core/v8/ScriptPromiseResolver.h#newcode88 Source/bindings/core/v8/ScriptPromiseResolver.h:88: bool stopped() { return ...
6 years ago (2014-12-04 08:08:01 UTC) #3
yhirano
My understanding in the previous discussion was that calling cancel() in the destructor is the ...
6 years ago (2014-12-04 13:19:49 UTC) #4
haraken
On 2014/12/04 13:19:49, yhirano wrote: > My understanding in the previous discussion was that calling ...
6 years ago (2014-12-04 14:52:05 UTC) #6
yhirano
Thanks. +eroman Eric, I have a question: Is calling CryptoResultImpl::cancel needed in resolving / rejecting ...
6 years ago (2014-12-04 15:06:29 UTC) #8
eroman
The problem is that CryptoResultImpl is passed between threads. * ~CryptoResultImpl() can be called on ...
6 years ago (2014-12-04 19:32:57 UTC) #9
yhirano
Thank you for the info. Yeah, I would like to keep the current design, too. ...
6 years ago (2014-12-04 20:40:21 UTC) #10
eroman
> Note that |m_result->cancel()| is not called when resolved or rejected. > My question is, ...
6 years ago (2014-12-04 22:46:51 UTC) #11
haraken
On 2014/12/04 19:32:57, eroman wrote: > The problem is that CryptoResultImpl is passed between threads. ...
6 years ago (2014-12-04 23:49:14 UTC) #12
yhirano
On 2014/12/04 22:46:51, eroman wrote: > > Note that |m_result->cancel()| is not called when resolved ...
6 years ago (2014-12-05 00:01:29 UTC) #13
eroman
That is in fact how it is implemented: (1) The request starts on a Blink ...
6 years ago (2014-12-05 00:10:47 UTC) #14
tasak
Thank you for reviewing. I updated the patch according to discussion with yhirano. (Thank you, ...
6 years ago (2014-12-09 10:46:29 UTC) #16
eroman
https://codereview.chromium.org/780793002/diff/60001/Source/modules/crypto/CryptoResultImpl.cpp File Source/modules/crypto/CryptoResultImpl.cpp (right): https://codereview.chromium.org/780793002/diff/60001/Source/modules/crypto/CryptoResultImpl.cpp#newcode198 Source/modules/crypto/CryptoResultImpl.cpp:198: // Creating the WeakResolver may return nullptr if active ...
6 years ago (2014-12-09 19:15:29 UTC) #17
yhirano
https://codereview.chromium.org/780793002/diff/60001/Source/modules/crypto/CryptoResultImpl.cpp File Source/modules/crypto/CryptoResultImpl.cpp (right): https://codereview.chromium.org/780793002/diff/60001/Source/modules/crypto/CryptoResultImpl.cpp#newcode72 Source/modules/crypto/CryptoResultImpl.cpp:72: CryptoResultImpl* m_result; I'm not sure this change is correct, ...
6 years ago (2014-12-11 02:28:00 UTC) #18
tasak
Thank you for review. https://codereview.chromium.org/780793002/diff/60001/Source/modules/crypto/CryptoResultImpl.cpp File Source/modules/crypto/CryptoResultImpl.cpp (right): https://codereview.chromium.org/780793002/diff/60001/Source/modules/crypto/CryptoResultImpl.cpp#newcode72 Source/modules/crypto/CryptoResultImpl.cpp:72: CryptoResultImpl* m_result; On 2014/12/11 02:27:59, ...
6 years ago (2014-12-11 09:44:39 UTC) #19
yhirano
lgtm https://codereview.chromium.org/780793002/diff/80001/Source/modules/crypto/CryptoResultImpl.h File Source/modules/crypto/CryptoResultImpl.h (right): https://codereview.chromium.org/780793002/diff/80001/Source/modules/crypto/CryptoResultImpl.h#newcode74 Source/modules/crypto/CryptoResultImpl.h:74: private: By making Resolver this class's inner class ...
6 years ago (2014-12-11 12:28:41 UTC) #20
haraken
Let me ask a couple of questions about the lifetime to understand it better :) ...
6 years ago (2014-12-12 00:04:11 UTC) #21
tasak
Thank you for review. https://codereview.chromium.org/780793002/diff/80001/Source/modules/crypto/CryptoResultImpl.cpp File Source/modules/crypto/CryptoResultImpl.cpp (right): https://codereview.chromium.org/780793002/diff/80001/Source/modules/crypto/CryptoResultImpl.cpp#newcode51 Source/modules/crypto/CryptoResultImpl.cpp:51: class CryptoResultResolver : public ScriptPromiseResolver ...
6 years ago (2014-12-12 07:56:51 UTC) #22
haraken
https://codereview.chromium.org/780793002/diff/100001/Source/modules/crypto/CryptoResultImpl.cpp File Source/modules/crypto/CryptoResultImpl.cpp (right): https://codereview.chromium.org/780793002/diff/100001/Source/modules/crypto/CryptoResultImpl.cpp#newcode121 Source/modules/crypto/CryptoResultImpl.cpp:121: { Add ASSERT(!m_resolver) to verify that m_resolver has been ...
6 years ago (2014-12-12 08:49:31 UTC) #23
eroman
https://codereview.chromium.org/780793002/diff/100001/Source/modules/crypto/CryptoResultImpl.h File Source/modules/crypto/CryptoResultImpl.h (right): https://codereview.chromium.org/780793002/diff/100001/Source/modules/crypto/CryptoResultImpl.h#newcode81 Source/modules/crypto/CryptoResultImpl.h:81: // Since ScriptPromiseResolver destroys itself, we should not use ...
6 years ago (2014-12-12 23:32:54 UTC) #24
haraken
https://codereview.chromium.org/780793002/diff/100001/Source/modules/crypto/CryptoResultImpl.h File Source/modules/crypto/CryptoResultImpl.h (right): https://codereview.chromium.org/780793002/diff/100001/Source/modules/crypto/CryptoResultImpl.h#newcode81 Source/modules/crypto/CryptoResultImpl.h:81: // Since ScriptPromiseResolver destroys itself, we should not use ...
6 years ago (2014-12-15 01:34:59 UTC) #25
haraken
https://codereview.chromium.org/780793002/diff/100001/Source/modules/crypto/CryptoResultImpl.cpp File Source/modules/crypto/CryptoResultImpl.cpp (right): https://codereview.chromium.org/780793002/diff/100001/Source/modules/crypto/CryptoResultImpl.cpp#newcode127 Source/modules/crypto/CryptoResultImpl.cpp:127: static_cast<CryptoResultImpl::Resolver*>(m_resolver)->clearCryptoResult(); I don't think this is needed once you ...
6 years ago (2014-12-15 01:36:51 UTC) #26
tasak
Thank you for review. https://codereview.chromium.org/780793002/diff/100001/Source/modules/crypto/CryptoResultImpl.cpp File Source/modules/crypto/CryptoResultImpl.cpp (right): https://codereview.chromium.org/780793002/diff/100001/Source/modules/crypto/CryptoResultImpl.cpp#newcode121 Source/modules/crypto/CryptoResultImpl.cpp:121: { On 2014/12/12 08:49:31, haraken ...
6 years ago (2014-12-15 05:26:46 UTC) #27
haraken
LGTM
6 years ago (2014-12-15 05:33:37 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/780793002/120001
6 years ago (2014-12-15 05:34:37 UTC) #30
commit-bot: I haz the power
6 years ago (2014-12-15 07:22:53 UTC) #31
Message was sent while issue was closed.
Committed patchset #5 (id:120001) as
https://src.chromium.org/viewvc/blink?view=rev&revision=187118

Powered by Google App Engine
This is Rietveld 408576698