|
|
Chromium Code Reviews
DescriptionReplace deprecated version of SetWithoutPathExpansion()
change SetWithoutPathExpansion(...,Value* in_value) to
SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value)
I changed to std::unique_ptr<base::DictionaryValue> and
In order to use SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) used std::move()
in RegisterBackgroundContents of background_contents_service and MergeDataAndStartSyncing and ProcessSyncChanges of supervised_user_sync_service.cc
BUG=650082
Committed: https://crrev.com/5037fa115e066741053b02372832295fd7851631
Cr-Commit-Position: refs/heads/master@{#424378}
Patch Set 1 : replaced deprecated version of SetWithoutPathExpansion() #Patch Set 2 : changed return type and std::move to wrapunique #Patch Set 3 : removed code of using wrapunique #Patch Set 4 : restored background directory file #
Messages
Total messages: 48 (36 generated)
Description was changed from ========== Deprecated version of SetWithoutPathExpansion BUG=650082 ========== to ========== Deprecated version of SetWithoutPathExpansion BUG=650082 ==========
pwangkk@gmail.com changed reviewers: + jinho.bang@samsung.com, simonhong@chromium.org
SetWithoutPathExpansion(..., Value* in_value) changed to the SetWithoutPathExpansion(..., std::unique_ptr<Value> in_value)
The CQ bit was checked by jinho.bang@samsung.com to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: android_compile_dbg on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_comp...)
The CQ bit was checked by jinho.bang@samsung.com to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presub...)
The CQ bit was checked by jinho.bang@samsung.com to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: This issue passed the CQ dry run.
pwangkk@gmail.com changed reviewers: + atwilson@chromium.org, bauerb@chromium.org
Hello, I'm newbie developer in the chromium project. https://cs.chromium.org/chromium/src/base/values.h?q=setwithout&sq=package:ch... I try to change SetWithoutPathExpansion(...,Value* in_value) to SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) PTAL
The patch looks good, but can you update the description? "Replace deprecated version of SetWithoutPathExpansion()" would already be an improvement, as it mentions _what_ the patch is doing; ideally you'd also mention where you make that change (in background mode and supervised user code). In general, http://chris.beams.io/posts/git-commit/ is a very good explanation of how to write commit messages.
Description was changed from ========== Deprecated version of SetWithoutPathExpansion BUG=650082 ========== to ========== Replace deprecated version of SetWithoutPathExpansion() BUG=650082 ==========
Description was changed from ========== Replace deprecated version of SetWithoutPathExpansion() BUG=650082 ========== to ========== Replace deprecated version of SetWithoutPathExpansion() BUG=650082 ==========
Description was changed from ========== Replace deprecated version of SetWithoutPathExpansion() BUG=650082 ========== to ========== Replace deprecated version of SetWithoutPathExpansion() change SetWithoutPathExpansion(...,Value* in_value) to SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) BUG=650082 ==========
Description was changed from ========== Replace deprecated version of SetWithoutPathExpansion() change SetWithoutPathExpansion(...,Value* in_value) to SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) BUG=650082 ========== to ========== Replace deprecated version of SetWithoutPathExpansion() change SetWithoutPathExpansion(...,Value* in_value) to SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) BUG=650082 ==========
Description was changed from ========== Replace deprecated version of SetWithoutPathExpansion() change SetWithoutPathExpansion(...,Value* in_value) to SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) BUG=650082 ========== to ========== Replace deprecated version of SetWithoutPathExpansion() change SetWithoutPathExpansion(...,Value* in_value) to SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) I changed to std::unique_ptr<base::DictionaryValue> and In order to use SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) used std::move() in RegisterBackgroundContents of background_contents_service and MergeDataAndStartSyncing and ProcessSyncChanges of supervised_user_sync_service.cc BUG=650082 ==========
Description was changed from ========== Replace deprecated version of SetWithoutPathExpansion() change SetWithoutPathExpansion(...,Value* in_value) to SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) I changed to std::unique_ptr<base::DictionaryValue> and In order to use SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) used std::move() in RegisterBackgroundContents of background_contents_service and MergeDataAndStartSyncing and ProcessSyncChanges of supervised_user_sync_service.cc BUG=650082 ========== to ========== Replace deprecated version of SetWithoutPathExpansion() change SetWithoutPathExpansion(...,Value* in_value) to SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) I changed to std::unique_ptr<base::DictionaryValue> and In order to use SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) used std::move() in RegisterBackgroundContents of background_contents_service and MergeDataAndStartSyncing and ProcessSyncChanges of supervised_user_sync_service.cc BUG=650082 ==========
pwangkk@gmail.com changed reviewers: - atwilson@chromium.org, jinho.bang@samsung.com, simonhong@chromium.org
Thank you for your advice I thought you are right so I've just changed things that you mentioned. if you find wrong something, please notice me again.
On 2016/09/30 15:01:21, pwang wrote: > Thank you for your advice > I thought you are right so I've just changed things that you mentioned. > if you find wrong something, please notice me again. LGTM, thanks!
pwangkk@gmail.com changed reviewers: + jinho.bang@samsung.com, simonhong@chromium.org
The CQ bit was checked by pwangkk@gmail.com
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presub...)
pwangkk@gmail.com changed reviewers: + atwilson@chromium.org
pwangkk@gmail.com changed reviewers: - bauerb@chromium.org, jinho.bang@samsung.com, simonhong@chromium.org
PTAL
pwangkk@gmail.com changed reviewers: + jinho.bang@samsung.com, simonhong@chromium.org
pwangkk@gmail.com changed reviewers: + bauerb@chromium.org - atwilson@chromium.org, jinho.bang@samsung.com, simonhong@chromium.org
The CQ bit was checked by pwangkk@gmail.com
The patchset sent to the CQ was uploaded after l-g-t-m from bauerb@chromium.org Link to the patchset: https://codereview.chromium.org/2378083002/#ps60001 (title: "restored background directory file")
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by pwangkk@gmail.com
The CQ bit was checked by pwangkk@gmail.com
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
pwangkk@gmail.com changed reviewers: + jinho.bang@samsung.com
Message was sent while issue was closed.
Description was changed from ========== Replace deprecated version of SetWithoutPathExpansion() change SetWithoutPathExpansion(...,Value* in_value) to SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) I changed to std::unique_ptr<base::DictionaryValue> and In order to use SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) used std::move() in RegisterBackgroundContents of background_contents_service and MergeDataAndStartSyncing and ProcessSyncChanges of supervised_user_sync_service.cc BUG=650082 ========== to ========== Replace deprecated version of SetWithoutPathExpansion() change SetWithoutPathExpansion(...,Value* in_value) to SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) I changed to std::unique_ptr<base::DictionaryValue> and In order to use SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) used std::move() in RegisterBackgroundContents of background_contents_service and MergeDataAndStartSyncing and ProcessSyncChanges of supervised_user_sync_service.cc BUG=650082 ==========
Message was sent while issue was closed.
Committed patchset #4 (id:60001)
Message was sent while issue was closed.
Description was changed from ========== Replace deprecated version of SetWithoutPathExpansion() change SetWithoutPathExpansion(...,Value* in_value) to SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) I changed to std::unique_ptr<base::DictionaryValue> and In order to use SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) used std::move() in RegisterBackgroundContents of background_contents_service and MergeDataAndStartSyncing and ProcessSyncChanges of supervised_user_sync_service.cc BUG=650082 ========== to ========== Replace deprecated version of SetWithoutPathExpansion() change SetWithoutPathExpansion(...,Value* in_value) to SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) I changed to std::unique_ptr<base::DictionaryValue> and In order to use SetWithoutPathExpansion(...,std::unique_ptr<Value> in_value) used std::move() in RegisterBackgroundContents of background_contents_service and MergeDataAndStartSyncing and ProcessSyncChanges of supervised_user_sync_service.cc BUG=650082 Committed: https://crrev.com/5037fa115e066741053b02372832295fd7851631 Cr-Commit-Position: refs/heads/master@{#424378} ==========
Message was sent while issue was closed.
Patchset 4 (id:??) landed as https://crrev.com/5037fa115e066741053b02372832295fd7851631 Cr-Commit-Position: refs/heads/master@{#424378} |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
