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

Issue 238273008: Add an action for server to send down rollback command. (Closed)

Created:
6 years, 8 months ago by haitaol1
Modified:
6 years, 8 months ago
Reviewers:
Nicolas Zea, maniscalco
CC:
chromium-reviews, tim+watch_chromium.org, haitaol+watch_chromium.org, albertb+watch_chromium.org, maniscalco+watch_chromium.org
Visibility:
Public.

Description

Add an action for server to send down rollback command. BUG=362679 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=265134

Patch Set 1 #

Total comments: 4

Patch Set 2 : #

Patch Set 3 : #

Total comments: 5

Patch Set 4 : #

Patch Set 5 : #

Total comments: 8

Patch Set 6 : #

Patch Set 7 : #

Patch Set 8 : #

Patch Set 9 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+35 lines, -6 lines) Patch
M chrome/browser/sync/test/integration/sync_test.cc View 1 2 3 4 5 6 7 8 2 chunks +16 lines, -5 lines 0 comments Download
M sync/engine/syncer_proto_util.cc View 1 2 3 3 chunks +7 lines, -1 line 0 comments Download
M sync/internal_api/public/util/syncer_error.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M sync/internal_api/public/util/syncer_error.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M sync/protocol/proto_enum_conversions.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M sync/protocol/sync_enums.proto View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M sync/protocol/sync_protocol_error.h View 1 2 3 4 5 2 chunks +6 lines, -0 lines 0 comments Download
M sync/protocol/sync_protocol_error.cc View 1 2 3 4 2 chunks +2 lines, -0 lines 0 comments Download

Messages

Total messages: 23 (0 generated)
haitaol1
6 years, 8 months ago (2014-04-15 19:14:49 UTC) #1
Nicolas Zea
do you need to update proto_value_conversions as well? https://codereview.chromium.org/238273008/diff/1/sync/protocol/sync_enums.proto File sync/protocol/sync_enums.proto (right): https://codereview.chromium.org/238273008/diff/1/sync/protocol/sync_enums.proto#newcode118 sync/protocol/sync_enums.proto:118: UNKNOWN_ACTION ...
6 years, 8 months ago (2014-04-15 23:08:31 UTC) #2
maniscalco
https://codereview.chromium.org/238273008/diff/1/sync/protocol/sync_enums.proto File sync/protocol/sync_enums.proto (right): https://codereview.chromium.org/238273008/diff/1/sync/protocol/sync_enums.proto#newcode118 sync/protocol/sync_enums.proto:118: UNKNOWN_ACTION = 6; // This is the default. On ...
6 years, 8 months ago (2014-04-15 23:16:26 UTC) #3
haitaol1
https://codereview.chromium.org/238273008/diff/1/sync/protocol/sync_enums.proto File sync/protocol/sync_enums.proto (right): https://codereview.chromium.org/238273008/diff/1/sync/protocol/sync_enums.proto#newcode118 sync/protocol/sync_enums.proto:118: UNKNOWN_ACTION = 6; // This is the default. I ...
6 years, 8 months ago (2014-04-15 23:44:03 UTC) #4
maniscalco
https://codereview.chromium.org/238273008/diff/1/sync/protocol/sync_enums.proto File sync/protocol/sync_enums.proto (right): https://codereview.chromium.org/238273008/diff/1/sync/protocol/sync_enums.proto#newcode118 sync/protocol/sync_enums.proto:118: UNKNOWN_ACTION = 6; // This is the default. To ...
6 years, 8 months ago (2014-04-16 00:09:19 UTC) #5
haitaol1
Turns out that server hasn't switched to using action. So changed to add a new ...
6 years, 8 months ago (2014-04-16 23:04:54 UTC) #6
maniscalco
https://codereview.chromium.org/238273008/diff/40001/sync/protocol/sync_protocol_error.h File sync/protocol/sync_protocol_error.h (right): https://codereview.chromium.org/238273008/diff/40001/sync/protocol/sync_protocol_error.h#newcode46 sync/protocol/sync_protocol_error.h:46: USER_ROLLBACK, Should you also update the switch statement in ...
6 years, 8 months ago (2014-04-17 18:05:29 UTC) #7
haitaol1
https://codereview.chromium.org/238273008/diff/40001/sync/protocol/sync_protocol_error.h File sync/protocol/sync_protocol_error.h (right): https://codereview.chromium.org/238273008/diff/40001/sync/protocol/sync_protocol_error.h#newcode46 sync/protocol/sync_protocol_error.h:46: USER_ROLLBACK, The new enum is missed because switch in ...
6 years, 8 months ago (2014-04-17 18:51:39 UTC) #8
maniscalco
LGTM (of course, you should still get one from zea@; mine won't let you commit) ...
6 years, 8 months ago (2014-04-18 16:29:15 UTC) #9
Nicolas Zea
https://codereview.chromium.org/238273008/diff/80001/chrome/browser/sync/test/integration/sync_test.cc File chrome/browser/sync/test/integration/sync_test.cc (right): https://codereview.chromium.org/238273008/diff/80001/chrome/browser/sync/test/integration/sync_test.cc#newcode919 chrome/browser/sync/test/integration/sync_test.cc:919: return sync_pb::SyncEnums::USER_NOT_ACTIVATED; shouldn't this be auth_expired? https://codereview.chromium.org/238273008/diff/80001/chrome/browser/sync/test/integration/sync_test.cc#newcode944 chrome/browser/sync/test/integration/sync_test.cc:944: case ...
6 years, 8 months ago (2014-04-18 18:06:50 UTC) #10
haitaol1
https://codereview.chromium.org/238273008/diff/80001/chrome/browser/sync/test/integration/sync_test.cc File chrome/browser/sync/test/integration/sync_test.cc (right): https://codereview.chromium.org/238273008/diff/80001/chrome/browser/sync/test/integration/sync_test.cc#newcode919 chrome/browser/sync/test/integration/sync_test.cc:919: return sync_pb::SyncEnums::USER_NOT_ACTIVATED; On 2014/04/18 18:06:50, Nicolas Zea wrote: > ...
6 years, 8 months ago (2014-04-18 20:01:30 UTC) #11
Nicolas Zea
lgtm
6 years, 8 months ago (2014-04-18 20:55:04 UTC) #12
haitaol1
The CQ bit was checked by haitaol@chromium.org
6 years, 8 months ago (2014-04-18 21:09:09 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/haitaol@chromium.org/238273008/100001
6 years, 8 months ago (2014-04-18 21:09:46 UTC) #14
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-18 22:31:50 UTC) #15
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on mac_chromium_rel
6 years, 8 months ago (2014-04-18 22:31:50 UTC) #16
haitaol1
The CQ bit was checked by haitaol@chromium.org
6 years, 8 months ago (2014-04-18 22:43:07 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/haitaol@chromium.org/238273008/110001
6 years, 8 months ago (2014-04-18 22:43:22 UTC) #18
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-19 01:03:32 UTC) #19
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on win_chromium_compile_dbg
6 years, 8 months ago (2014-04-19 01:03:33 UTC) #20
haitaol1
The CQ bit was checked by haitaol@chromium.org
6 years, 8 months ago (2014-04-21 19:57:46 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/haitaol@chromium.org/238273008/140001
6 years, 8 months ago (2014-04-21 19:58:00 UTC) #22
commit-bot: I haz the power
6 years, 8 months ago (2014-04-22 01:04:14 UTC) #23
Message was sent while issue was closed.
Change committed as 265134

Powered by Google App Engine
This is Rietveld 408576698