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

Issue 2241583003: Creating protobuf for reading list sync (Closed)

Created:
4 years, 4 months ago by Olivier
Modified:
4 years, 3 months ago
CC:
chromium-reviews, sync-reviews_chromium.org, albertb+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Creating protobuf for reading list sync Protobuf contains a single item. Committed: https://crrev.com/113b244cda221257c2a0a0583a1f63cca76028f8 Cr-Commit-Position: refs/heads/master@{#419440}

Patch Set 1 #

Total comments: 6

Patch Set 2 : link message to code #

Total comments: 3

Patch Set 3 : remove period #

Total comments: 2

Patch Set 4 : feedback #

Patch Set 5 : missing enum #

Patch Set 6 : typo #

Patch Set 7 : last missing parts #

Patch Set 8 : required -> optional #

Patch Set 9 : Fix last bots #

Patch Set 10 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+122 lines, -12 lines) Patch
M components/browser_sync/profile_sync_service.cc View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M components/sync/base/data_type_histogram.h View 1 2 3 4 5 6 7 8 9 1 chunk +3 lines, -0 lines 0 comments Download
M components/sync/base/model_type.h View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -0 lines 0 comments Download
M components/sync/driver/model_association_manager.cc View 1 2 3 4 5 6 7 8 9 1 chunk +7 lines, -6 lines 0 comments Download
M components/sync/driver/pref_names.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M components/sync/driver/pref_names.cc View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M components/sync/driver/sync_prefs.cc View 1 2 3 4 5 6 7 8 9 2 chunks +3 lines, -0 lines 0 comments Download
M components/sync/driver/sync_prefs_unittest.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download
M components/sync/driver/user_selectable_sync_type.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M components/sync/protocol/nigori_specifics.proto View 1 2 3 4 5 6 7 8 9 1 chunk +3 lines, -0 lines 0 comments Download
M components/sync/protocol/proto_enum_conversions.h View 1 2 3 2 chunks +4 lines, -0 lines 0 comments Download
M components/sync/protocol/proto_enum_conversions.cc View 1 2 3 1 chunk +12 lines, -0 lines 0 comments Download
M components/sync/protocol/proto_value_conversions.h View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -0 lines 0 comments Download
M components/sync/protocol/proto_value_conversions.cc View 1 2 3 4 5 6 7 8 9 4 chunks +16 lines, -0 lines 0 comments Download
M components/sync/protocol/proto_value_conversions_unittest.cc View 1 2 3 4 5 6 7 8 9 3 chunks +6 lines, -1 line 0 comments Download
M components/sync/protocol/protocol_sources.gni View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
A components/sync/protocol/reading_list_specifics.proto View 1 2 3 4 5 6 7 1 chunk +31 lines, -0 lines 0 comments Download
M components/sync/protocol/sync.proto View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -0 lines 0 comments Download
M components/sync/syncable/model_type.cc View 1 2 3 4 5 6 7 8 9 5 chunks +10 lines, -1 line 0 comments Download
M components/sync/syncable/model_type_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M components/sync/syncable/nigori_util.cc View 1 2 3 4 5 6 7 8 9 4 chunks +5 lines, -2 lines 0 comments Download
M components/sync/tools/testserver/chromiumsync.py View 1 2 3 4 5 6 7 8 9 4 chunks +5 lines, -1 line 0 comments Download
M tools/metrics/histograms/histograms.xml View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 61 (30 generated)
Olivier
Do we need more fields?
4 years, 4 months ago (2016-08-12 09:23:56 UTC) #2
jif-google
On 2016/08/12 09:23:56, Olivier Robin wrote: > Do we need more fields? 1/ Do we ...
4 years, 4 months ago (2016-08-12 09:46:43 UTC) #3
lody
Should there be ordering information? https://codereview.chromium.org/2241583003/diff/1/components/sync/protocol/reading_list_specifics.proto File components/sync/protocol/reading_list_specifics.proto (right): https://codereview.chromium.org/2241583003/diff/1/components/sync/protocol/reading_list_specifics.proto#newcode22 components/sync/protocol/reading_list_specifics.proto:22: required int64 creation_time_us = ...
4 years, 4 months ago (2016-08-12 09:47:55 UTC) #4
stkhapugin
How do you plan tracking seen/unseen? https://codereview.chromium.org/2241583003/diff/1/components/sync/protocol/reading_list_specifics.proto File components/sync/protocol/reading_list_specifics.proto (right): https://codereview.chromium.org/2241583003/diff/1/components/sync/protocol/reading_list_specifics.proto#newcode27 components/sync/protocol/reading_list_specifics.proto:27: UNKNOWN = 0; ...
4 years, 4 months ago (2016-08-12 09:53:12 UTC) #5
Olivier
1/ Do we really need the "UNKNOWN" ReadingListEntryStatus? Removed 2/ The only other field I ...
4 years, 4 months ago (2016-08-12 09:58:13 UTC) #6
lody
lgtm
4 years, 4 months ago (2016-08-12 11:19:23 UTC) #7
stkhapugin
https://codereview.chromium.org/2241583003/diff/1/components/sync/protocol/reading_list_specifics.proto File components/sync/protocol/reading_list_specifics.proto (right): https://codereview.chromium.org/2241583003/diff/1/components/sync/protocol/reading_list_specifics.proto#newcode22 components/sync/protocol/reading_list_specifics.proto:22: required int64 creation_time_us = 4; On 2016/08/12 09:58:13, Olivier ...
4 years, 4 months ago (2016-08-12 11:25:39 UTC) #8
Olivier
https://codereview.chromium.org/2241583003/diff/1/components/sync/protocol/reading_list_specifics.proto File components/sync/protocol/reading_list_specifics.proto (right): https://codereview.chromium.org/2241583003/diff/1/components/sync/protocol/reading_list_specifics.proto#newcode22 components/sync/protocol/reading_list_specifics.proto:22: required int64 creation_time_us = 4; On 2016/08/12 11:25:39, stkhapugin ...
4 years, 4 months ago (2016-08-12 11:42:22 UTC) #9
Olivier
4 years, 4 months ago (2016-08-12 15:30:44 UTC) #11
Olivier
ping zea. Could you take a look and tell me if something is missing?
4 years, 4 months ago (2016-08-17 14:19:09 UTC) #12
Nicolas Zea
Mostly LG, but could you give us more info about how the reading list type ...
4 years, 4 months ago (2016-08-17 19:12:09 UTC) #13
Nicolas Zea
https://codereview.chromium.org/2241583003/diff/20001/components/sync/protocol/reading_list_specifics.proto File components/sync/protocol/reading_list_specifics.proto (right): https://codereview.chromium.org/2241583003/diff/20001/components/sync/protocol/reading_list_specifics.proto#newcode14 components/sync/protocol/reading_list_specifics.proto:14: // Properties of Reading list items.. On 2016/08/17 19:12:09, ...
4 years, 4 months ago (2016-08-17 19:12:32 UTC) #14
jif
lgtm
4 years, 4 months ago (2016-08-18 11:32:27 UTC) #15
Olivier
https://codereview.chromium.org/2241583003/diff/20001/components/sync/protocol/reading_list_specifics.proto File components/sync/protocol/reading_list_specifics.proto (right): https://codereview.chromium.org/2241583003/diff/20001/components/sync/protocol/reading_list_specifics.proto#newcode14 components/sync/protocol/reading_list_specifics.proto:14: // Properties of Reading list items.. On 2016/08/17 19:12:09, ...
4 years, 4 months ago (2016-08-18 14:59:52 UTC) #16
Nicolas Zea
lgtm
4 years, 4 months ago (2016-08-22 18:23:51 UTC) #17
Nicolas Zea
oops, forgot one thing: please update proto_value_conversions.cc with the new reading list info
4 years, 4 months ago (2016-08-22 18:24:13 UTC) #18
Patrick Noland
https://codereview.chromium.org/2241583003/diff/40001/components/sync/syncable/model_type.cc File components/sync/syncable/model_type.cc (right): https://codereview.chromium.org/2241583003/diff/40001/components/sync/syncable/model_type.cc#newcode142 components/sync/syncable/model_type.cc:142: {READING_LIST, "READING_LIST", "reading_list", "Reading List", Apologies for the driveby, ...
4 years, 3 months ago (2016-08-29 17:01:05 UTC) #20
Olivier
Hi zea, I think I fixed all the feedback. I ended up making more changes. ...
4 years, 3 months ago (2016-09-06 14:06:59 UTC) #23
Olivier
+rkaplow as histograms.xml owner
4 years, 3 months ago (2016-09-06 14:07:22 UTC) #25
Olivier
components unittests are stull failing with [libprotobuf FATAL ../../third_party/protobuf/src/google/protobuf/message_lite.cc:286] CHECK failed: IsInitialized(): Can't serialize message ...
4 years, 3 months ago (2016-09-06 17:11:39 UTC) #34
Olivier
On 2016/09/06 17:11:39, Olivier Robin wrote: > components unittests are stull failing with > [libprotobuf ...
4 years, 3 months ago (2016-09-06 17:16:33 UTC) #35
Nicolas Zea
You don't need to update the real server, but you might need to update the ...
4 years, 3 months ago (2016-09-06 17:27:42 UTC) #36
Olivier
The problem was that there were required fields in the protobuf. Apparently no other protobuf ...
4 years, 3 months ago (2016-09-07 09:53:35 UTC) #39
rkaplow
lgtm
4 years, 3 months ago (2016-09-07 13:28:30 UTC) #42
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/2241583003/160001
4 years, 3 months ago (2016-09-19 07:51:57 UTC) #49
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_ozone_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_ozone_rel_ng/builds/237606) mac_chromium_compile_dbg_ng on master.tryserver.chromium.mac (JOB_FAILED, ...
4 years, 3 months ago (2016-09-19 07:54:27 UTC) #51
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/2241583003/180001
4 years, 3 months ago (2016-09-19 10:58:48 UTC) #54
commit-bot: I haz the power
Try jobs failed on following builders: android_n5x_swarming_rel on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_n5x_swarming_rel/builds/32684)
4 years, 3 months ago (2016-09-19 12:18:19 UTC) #56
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/2241583003/180001
4 years, 3 months ago (2016-09-19 12:20:05 UTC) #58
commit-bot: I haz the power
Committed patchset #10 (id:180001)
4 years, 3 months ago (2016-09-19 12:52:30 UTC) #59
commit-bot: I haz the power
4 years, 3 months ago (2016-09-19 12:54:49 UTC) #61
Message was sent while issue was closed.
Patchset 10 (id:??) landed as
https://crrev.com/113b244cda221257c2a0a0583a1f63cca76028f8
Cr-Commit-Position: refs/heads/master@{#419440}

Powered by Google App Engine
This is Rietveld 408576698