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

Issue 2820623002: Revert of [Sync] Refactor ModelSafeWorker::DoWorkAndWaitUntilDone() to avoid code duplication. (Closed)

Created:
3 years, 8 months ago by cmumford
Modified:
3 years, 8 months ago
Reviewers:
dvadym, brettw, skym, fdoray
CC:
chromium-reviews, gcasto+watchlist_chromium.org, vabr+watchlistpasswordmanager_chromium.org, sync-reviews_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Revert of [Sync] Refactor ModelSafeWorker::DoWorkAndWaitUntilDone() to avoid code duplication. (patchset #11 id:200001 of https://codereview.chromium.org/2782573002/ ) Reason for revert: Causing build failure. More info at https://bugs.chromium.org/p/chromium/issues/detail?id=711466. Original issue's description: > [Sync] Refactor ModelSafeWorker::DoWorkAndWaitUntilDone() to avoid code duplication. > > Before this CL, logic to wait for a WorkCallback to run or be > abandoned was duplicated in multiple > ModelSafeWorker::DoWorkAndWaitUntilDoneImpl() implementations. > > With this CL, ModelSafeWorker::DoWorkAndWaitUntilDoneImpl() is > replaced with ModelSafeWorker::ScheduleWork(). Implementations > are merely responsible for scheduling the callback that they > receive; they don't have to wait for it to run or be abandoned. > > The logic to wait for the callback to run or be abandoned is moved > into ModelSafeWorker::DoWorkAndWaitUntilDone(). > ModelSafeWorker::DoWorkAndWaitUntilDone() calls > ModelSafeWorker::ScheduleWork(). Then, it waits until either the > callback that it passed to ModelSafeWorker::ScheduleWork() is deleted > (may or may not have run) or ModelSafeWorker::RequestStop() is called > before the callback has started to run. Additionnaly, calling > ModelSafeWorker::RequestStop() transforms into no-op further > invocations of callbacks passed to ModelSafeWorker::ScheduleWork(). > > Unblocking ModelSafeWorker::DoWorkAndWaitUntilDone() when > ModelSafeWorker::RequestStop() is called is important to > prevent deadlocks in workers that schedule work on the UI > thread. Indeed, in Chrome, no tasks are scheduled on the UI > thread after ModelSafeWorker::RequestStop() is called and > pending UI tasks are not scheduled until after the sync thread > is joined. > > BUG=663600 > > Review-Url: https://codereview.chromium.org/2782573002 > Cr-Commit-Position: refs/heads/master@{#463413} > Committed: https://chromium.googlesource.com/chromium/src/+/316c08f3692150ac1c416c67391768622cc6a77f TBR=brettw@chromium.org,skym@chromium.org,dvadym@chromium.org,fdoray@chromium.org # Not skipping CQ checks because original CL landed more than 1 days ago. BUG=663600 Review-Url: https://codereview.chromium.org/2820623002 Cr-Commit-Position: refs/heads/master@{#464628} Committed: https://chromium.googlesource.com/chromium/src/+/bb76b686d4b7ed1fd7413a1f4ee17de4452d1ac0

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+483 lines, -559 lines) Patch
M components/history/core/browser/BUILD.gn View 1 chunk +0 lines, -1 line 0 comments Download
M components/history/core/browser/history_model_worker.h View 1 chunk +4 lines, -2 lines 0 comments Download
M components/history/core/browser/history_model_worker.cc View 5 chunks +72 lines, -17 lines 0 comments Download
D components/history/core/browser/history_model_worker_unittest.cc View 1 chunk +0 lines, -227 lines 0 comments Download
M components/password_manager/sync/browser/password_model_worker.h View 1 chunk +4 lines, -2 lines 0 comments Download
M components/password_manager/sync/browser/password_model_worker.cc View 2 chunks +44 lines, -11 lines 0 comments Download
M components/sync/BUILD.gn View 2 chunks +3 lines, -0 lines 0 comments Download
A components/sync/base/scoped_event_signal.h View 1 chunk +40 lines, -0 lines 0 comments Download
A components/sync/base/scoped_event_signal.cc View 1 chunk +34 lines, -0 lines 0 comments Download
A components/sync/base/scoped_event_signal_unittest.cc View 1 chunk +84 lines, -0 lines 0 comments Download
M components/sync/engine/browser_thread_model_worker.h View 2 chunks +9 lines, -2 lines 0 comments Download
M components/sync/engine/browser_thread_model_worker.cc View 2 chunks +39 lines, -6 lines 0 comments Download
M components/sync/engine/browser_thread_model_worker_unittest.cc View 1 chunk +3 lines, -2 lines 0 comments Download
M components/sync/engine/model_safe_worker.h View 4 chunks +16 lines, -30 lines 0 comments Download
M components/sync/engine/model_safe_worker.cc View 2 chunks +11 lines, -76 lines 0 comments Download
M components/sync/engine/model_safe_worker_unittest.cc View 2 chunks +2 lines, -163 lines 0 comments Download
M components/sync/engine/passive_model_worker.h View 2 chunks +4 lines, -2 lines 0 comments Download
M components/sync/engine/passive_model_worker.cc View 2 chunks +5 lines, -3 lines 0 comments Download
M components/sync/engine/ui_model_worker.h View 2 chunks +20 lines, -2 lines 0 comments Download
M components/sync/engine/ui_model_worker.cc View 2 chunks +80 lines, -5 lines 0 comments Download
M components/sync/engine/ui_model_worker_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M components/sync/engine_impl/directory_update_handler.cc View 2 chunks +1 line, -2 lines 0 comments Download
M components/sync/test/engine/fake_model_worker.h View 1 chunk +3 lines, -2 lines 0 comments Download
M components/sync/test/engine/fake_model_worker.cc View 2 chunks +4 lines, -3 lines 0 comments Download

Messages

Total messages: 6 (3 generated)
cmumford
Created Revert of [Sync] Refactor ModelSafeWorker::DoWorkAndWaitUntilDone() to avoid code duplication.
3 years, 8 months ago (2017-04-13 23:00:49 UTC) #2
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2820623002/1
3 years, 8 months ago (2017-04-13 23:01:41 UTC) #3
commit-bot: I haz the power
3 years, 8 months ago (2017-04-14 00:39:33 UTC) #6
Message was sent while issue was closed.
Committed patchset #1 (id:1) as
https://chromium.googlesource.com/chromium/src/+/bb76b686d4b7ed1fd7413a1f4ee1...

Powered by Google App Engine
This is Rietveld 408576698