Commit 0a2edfc7 authored by zhaoyangli's avatar zhaoyangli Committed by Commit Bot

Roll src/ios/third_party/edo/src/ 243fc89ae..97121c640 (22 commits)

https://chromium.googlesource.com/external/github.com/google/eDistantObject.git/+log/243fc89ae95b..97121c64019f

$ git log 243fc89ae..97121c640 --date=short --no-merges --format='%ad %ae %s'
2020-06-20 mobile-devx-github-bot Wrap EDOClientService::errorHandler c functions in extern "C"
2020-06-10 albertbow Add warning message to `isKindOfClass:`.
2020-05-02 sskhandp Add -Wunguarded-availability and fix availability warning
2020-04-29 mobile-devx-github-bot Fix up EDO to work with OCMock 3.6
2020-04-21 haowoo Use lightweight generics to retrieve root objects.
2020-04-18 albertbow Internal change
2020-04-16 mobile-devx-github-bot Internal change
2020-04-16 sskhandp Internal change
2020-04-09 mobile-devx-github-bot Fix up .andDo blocks to not call retainArguments that can accidentally cause retain loops in mocks.
2020-02-19 sskhandp Store queue in variable to avoid repetitive calls.
2020-02-13 mobile-devx-github-bot Make sure strongSelf and strongSelf.handlerSyncQueue is not nil.
2020-02-11 albertbow Minor fix on comments.
2020-02-03 tirodkar Fix project name
2020-01-10 albertbow Rollforward EDORemoteException for user-thrown exceptions in remote invocation.
2020-01-07 albertbow Roll forward the fallback of EDORemoteException to be the subclass of NSException.
2020-01-02 mobile-devx-github-bot Internal change
2020-01-02 albertbow Fallback EDORemoteException to be the subclass of NSException.
2019-12-18 albertbow Rollback EDORemoteException.
2019-12-17 albertbow Allow one-way blacklisting types in remote invocation.
2019-12-17 albertbow Use EDORemoteException for user-thrown exceptions in remote invocation.
2019-12-16 albertbow Expose EDORemoteException.
2019-12-12 albertbow Create EDOInvocationException class.

Created with:
  roll-dep src/ios/third_party/edo/src

Changed BUILD.gn file and a test file in crashpad for the test to pass.

Bug: 1097387
Change-Id: Id6af6c2098ad32df72038efadd4cfbcd533bfb08
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2258418Reviewed-by: default avatarRohit Rao <rohitrao@chromium.org>
Reviewed-by: default avatarMark Mentovai <mark@chromium.org>
Reviewed-by: default avatarJustin Cohen <justincohen@chromium.org>
Commit-Queue: Zhaoyang Li <zhaoyangli@chromium.org>
Cr-Commit-Position: refs/heads/master@{#781640}
parent b9df1101
...@@ -497,7 +497,7 @@ deps = { ...@@ -497,7 +497,7 @@ deps = {
}, },
'src/ios/third_party/edo/src': { 'src/ios/third_party/edo/src': {
'url': Var('chromium_git') + '/external/github.com/google/eDistantObject.git' + '@' + '243fc89ae95b24717d41f3786f6a9abeeef87c92', 'url': Var('chromium_git') + '/external/github.com/google/eDistantObject.git' + '@' + '97121c64019fa0e8bfbc8254e3ccb5572c500746',
'condition': 'checkout_ios', 'condition': 'checkout_ios',
}, },
......
...@@ -91,6 +91,8 @@ source_set("edo") { ...@@ -91,6 +91,8 @@ source_set("edo") {
"src/Service/Sources/EDOParameter.m", "src/Service/Sources/EDOParameter.m",
"src/Service/Sources/EDOProtocolObject.h", "src/Service/Sources/EDOProtocolObject.h",
"src/Service/Sources/EDOProtocolObject.m", "src/Service/Sources/EDOProtocolObject.m",
"src/Service/Sources/EDORemoteException.h",
"src/Service/Sources/EDORemoteException.m",
"src/Service/Sources/EDORemoteVariable.h", "src/Service/Sources/EDORemoteVariable.h",
"src/Service/Sources/EDORemoteVariable.m", "src/Service/Sources/EDORemoteVariable.m",
"src/Service/Sources/EDOServiceError.h", "src/Service/Sources/EDOServiceError.h",
...@@ -114,6 +116,8 @@ source_set("edo") { ...@@ -114,6 +116,8 @@ source_set("edo") {
"src/Service/Sources/NSKeyedArchiver+EDOAdditions.m", "src/Service/Sources/NSKeyedArchiver+EDOAdditions.m",
"src/Service/Sources/NSKeyedUnarchiver+EDOAdditions.h", "src/Service/Sources/NSKeyedUnarchiver+EDOAdditions.h",
"src/Service/Sources/NSKeyedUnarchiver+EDOAdditions.m", "src/Service/Sources/NSKeyedUnarchiver+EDOAdditions.m",
"src/Service/Sources/NSObject+EDOBlacklistedType.h",
"src/Service/Sources/NSObject+EDOBlacklistedType.m",
"src/Service/Sources/NSObject+EDOParameter.h", "src/Service/Sources/NSObject+EDOParameter.h",
"src/Service/Sources/NSObject+EDOParameter.m", "src/Service/Sources/NSObject+EDOParameter.m",
"src/Service/Sources/NSObject+EDOValue.h", "src/Service/Sources/NSObject+EDOValue.h",
......
justincohen@google.com justincohen@chromium.org
lindsayw@google.com lindsayw@chromium.org
rohitrao@google.com rohitrao@chromium.org
\ No newline at end of file \ No newline at end of file
...@@ -36,4 +36,3 @@ $ git am --3way --message-id -p4 /tmp/patchdir ...@@ -36,4 +36,3 @@ $ git am --3way --message-id -p4 /tmp/patchdir
Local Modifications: Local Modifications:
- codereview.settings has been excluded. - codereview.settings has been excluded.
- Fix EDO compile due to EDO mismath, revert after Chromium EDO roll.
...@@ -49,9 +49,9 @@ ...@@ -49,9 +49,9 @@
// Override EDO default error handler. Without this, the default EDO error // Override EDO default error handler. Without this, the default EDO error
// handler will throw an error and fail the test. // handler will throw an error and fail the test.
[EDOClientService setErrorHandler:^(NSError* error){ EDOSetClientErrorHandler(^(NSError* error){
// Do nothing. // Do nothing.
}]; });
} }
- (void)setUp { - (void)setUp {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment