-
Notifications
You must be signed in to change notification settings - Fork 892
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sync #226
Merged
Merged
Sync #226
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AlexeyBarabash
force-pushed
the
WIP_sync
branch
4 times, most recently
from
July 16, 2018 16:06
0e2d0a6
to
053794d
Compare
AlexeyBarabash
force-pushed
the
WIP_sync
branch
2 times, most recently
from
July 26, 2018 08:36
53a3630
to
81d9d6c
Compare
AlexeyBarabash
force-pushed
the
WIP_sync
branch
2 times, most recently
from
August 13, 2018 11:45
847c8b9
to
c426e1b
Compare
bridiver
reviewed
Aug 14, 2018
patches/chrome-browser-ui-webui-chrome_web_ui_controller_factory.cc.patch
Outdated
Show resolved
Hide resolved
bridiver
reviewed
Aug 14, 2018
bridiver
reviewed
Aug 14, 2018
patches/extensions-browser-extension_event_histogram_value.h.patch
Outdated
Show resolved
Hide resolved
bridiver
reviewed
Aug 14, 2018
bridiver
reviewed
Aug 14, 2018
bridiver
reviewed
Aug 14, 2018
patches/chrome-browser-extensions-component_extensions_whitelist-whitelist.cc.patch
Outdated
Show resolved
Hide resolved
bridiver
reviewed
Aug 15, 2018
bbondy
reviewed
Aug 15, 2018
chromium_src/chrome/browser/extensions/component_extensions_whitelist/whitelist.cc
Outdated
Show resolved
Hide resolved
bbondy
reviewed
Aug 15, 2018
chromium_src/chrome/browser/extensions/component_extensions_whitelist/whitelist.cc
Outdated
Show resolved
Hide resolved
bridiver
reviewed
Aug 15, 2018
AlexeyBarabash
force-pushed
the
WIP_sync
branch
5 times, most recently
from
September 10, 2018 12:55
9a1a07a
to
0529ea8
Compare
AlexeyBarabash
force-pushed
the
WIP_sync
branch
from
September 19, 2018 18:33
4f8fe45
to
115a013
Compare
darkdh
reviewed
Sep 26, 2018
AlexeyBarabash
force-pushed
the
WIP_sync
branch
from
September 30, 2018 08:15
81e105c
to
1648396
Compare
updated tests according to new bookmarks order processing more BraveSyncService unittests
syncTimestamp will only be set from native side when node is originally created from local
…message to console log, according to codereview
-- 1. enum name conflicts with windows header ../..\brave/components/brave_sync/jslib_messages.h(115,5): error: expected identifier DELETE = 2, ..\..\..\..\Program Files (x86)\Windows Kits\10\include\10.0.17134.0\um\winnt.h(8881,42): note: expanded from macro 'DELETE' \#define DELETE (0x00010000L) ^ -- 2. forward declaration doesn't work with unqiue_ptr on Windows In file included from ../..\brave/components/brave_sync/client/brave_sync_client.h:10: ..\..\..\..\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.11.25503\include\memory(1997,21): error: invalid application of 'sizeof' to an incomplete type 'brave_sync::jslib::SyncRecord' static_assert(0 < sizeof (_Ty), ^~~~~~~~~~~~ ...
AlexeyBarabash
force-pushed
the
WIP_sync
branch
from
November 1, 2018 17:06
800fd4f
to
d6b8ddd
Compare
bridiver
reviewed
Nov 1, 2018
DELETE = 2, | ||
A_MIN = CREATE, | ||
A_MAX = DELETE, | ||
A_CREATE = 0, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this seems really hacky, but I think we'll replace this with the chromium sync enums later anyway
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
chromium doesn't use raw DELETE either
enum SyncChangeType {
ACTION_INVALID,
ACTION_ADD,
ACTION_UPDATE,
ACTION_DELETE,
};
AlexeyBarabash
force-pushed
the
WIP_sync
branch
2 times, most recently
from
November 1, 2018 17:32
8dffa2a
to
cbb16ca
Compare
AlexeyBarabash
force-pushed
the
WIP_sync
branch
from
November 1, 2018 17:40
cbb16ca
to
c5853d8
Compare
bridiver
approved these changes
Nov 1, 2018
darkdh
pushed a commit
that referenced
this pull request
Nov 1, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Initial work in progress PR for sync
brave/brave-browser#29