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

Issue 1752683002: isolate sk_sp from larger cl (Closed)

Created:
4 years, 9 months ago by reed1
Modified:
4 years, 9 months ago
CC:
reviews_skia.org
Base URL:
https://skia.googlesource.com/skia.git@master
Target Ref:
refs/heads/master
Project:
skia
Visibility:
Public.

Description

Patch Set 1 #

Total comments: 5

Patch Set 2 : add some dox #

Patch Set 3 : add default arg to reset #

Total comments: 4

Patch Set 4 : remove default arg to bare-ptr constructor now that we have an explicit default constructor #

Total comments: 5

Patch Set 5 : spelling mistakes #

Unified diffs Side-by-side diffs Delta from patch set Stats (+189 lines, -0 lines) Patch
M include/core/SkRefCnt.h View 1 2 3 4 1 chunk +99 lines, -0 lines 0 comments Download
M tests/RefCntTest.cpp View 1 chunk +90 lines, -0 lines 0 comments Download

Messages

Total messages: 31 (13 generated)
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1752683002/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1752683002/1
4 years, 9 months ago (2016-03-01 04:14:23 UTC) #3
reed1
isolated from larger maskfilter CL
4 years, 9 months ago (2016-03-01 04:15:03 UTC) #5
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-01 04:28:59 UTC) #7
mtklein
lgtm
4 years, 9 months ago (2016-03-01 05:05:57 UTC) #8
fmalita_google_do_not_use
https://codereview.chromium.org/1752683002/diff/1/include/core/SkRefCnt.h File include/core/SkRefCnt.h (right): https://codereview.chromium.org/1752683002/diff/1/include/core/SkRefCnt.h#newcode233 include/core/SkRefCnt.h:233: public: Default ctor? https://codereview.chromium.org/1752683002/diff/1/include/core/SkRefCnt.h#newcode237 include/core/SkRefCnt.h:237: explicit sk_sp(T* obj = ...
4 years, 9 months ago (2016-03-01 05:23:25 UTC) #10
f(malita)
https://codereview.chromium.org/1752683002/diff/1/include/core/SkRefCnt.h File include/core/SkRefCnt.h (right): https://codereview.chromium.org/1752683002/diff/1/include/core/SkRefCnt.h#newcode237 include/core/SkRefCnt.h:237: explicit sk_sp(T* obj = nullptr) : fPtr(obj) {} On ...
4 years, 9 months ago (2016-03-01 12:53:49 UTC) #11
mtklein
https://codereview.chromium.org/1752683002/diff/1/include/core/SkRefCnt.h File include/core/SkRefCnt.h (right): https://codereview.chromium.org/1752683002/diff/1/include/core/SkRefCnt.h#newcode233 include/core/SkRefCnt.h:233: public: On 2016/03/01 05:23:25, fmalita_google_do_not_use wrote: > Default ctor? ...
4 years, 9 months ago (2016-03-01 13:25:37 UTC) #12
reed1
Added some dox. Note that I've removed the auto-conversion to T* (since I no longer ...
4 years, 9 months ago (2016-03-01 14:48:22 UTC) #13
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1752683002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1752683002/20001
4 years, 9 months ago (2016-03-01 14:48:36 UTC) #15
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-01 14:58:48 UTC) #17
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1752683002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1752683002/40001
4 years, 9 months ago (2016-03-01 15:02:49 UTC) #19
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared-Trybot on client.skia (JOB_FAILED, http://build.chromium.org/p/client.skia/builders/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared-Trybot/builds/6630)
4 years, 9 months ago (2016-03-01 15:04:57 UTC) #21
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1752683002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1752683002/60001
4 years, 9 months ago (2016-03-01 15:09:59 UTC) #23
mtklein
https://codereview.chromium.org/1752683002/diff/40001/include/core/SkRefCnt.h File include/core/SkRefCnt.h (right): https://codereview.chromium.org/1752683002/diff/40001/include/core/SkRefCnt.h#newcode237 include/core/SkRefCnt.h:237: * may have its ref/unref be thread-safe, but that ...
4 years, 9 months ago (2016-03-01 15:10:38 UTC) #24
reed1
https://codereview.chromium.org/1752683002/diff/40001/include/core/SkRefCnt.h File include/core/SkRefCnt.h (right): https://codereview.chromium.org/1752683002/diff/40001/include/core/SkRefCnt.h#newcode237 include/core/SkRefCnt.h:237: * may have its ref/unref be thread-safe, but that ...
4 years, 9 months ago (2016-03-01 15:14:31 UTC) #25
mtklein
https://codereview.chromium.org/1752683002/diff/60001/include/core/SkRefCnt.h File include/core/SkRefCnt.h (right): https://codereview.chromium.org/1752683002/diff/60001/include/core/SkRefCnt.h#newcode248 include/core/SkRefCnt.h:248: sk_sp(const sk_sp<T>& that) : fPtr(SkSafeRef(that.get())) {} Gonna mark some ...
4 years, 9 months ago (2016-03-01 15:14:34 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1752683002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1752683002/80001
4 years, 9 months ago (2016-03-01 15:14:49 UTC) #29
commit-bot: I haz the power
4 years, 9 months ago (2016-03-01 15:28:54 UTC) #31
Message was sent while issue was closed.
Committed patchset #5 (id:80001) as
https://skia.googlesource.com/skia/+/bb7b043b2db64197d2f6a1edaf3562a50c77afb1

Powered by Google App Engine
This is Rietveld 408576698