Update to Chromium version 123.0.6312.0 (#1262506)

- MacOS ARM64 Official builds are currently failing due to
  https://issues.chromium.org/issues/326898585
This commit is contained in:
Marshall Greenblatt
2024-02-22 13:36:15 -05:00
parent 2c5dd120c7
commit d4cf19db29
100 changed files with 837 additions and 799 deletions

View File

@@ -2022,6 +2022,11 @@ class CookieRestartTestHandler : public RoutingTestHandler,
CefRefPtr<CefRequest> request,
const CefCookie& cookie) override {
EXPECT_IO_THREAD();
const std::string& url = request->GetURL();
if (IgnoreURL(url)) {
return true;
}
can_send_cookie_ct_++;
// Called before the URL2 network requests.
@@ -2036,6 +2041,11 @@ class CookieRestartTestHandler : public RoutingTestHandler,
CefRefPtr<CefResponse> response,
const CefCookie& cookie) override {
EXPECT_IO_THREAD();
const std::string& url = request->GetURL();
if (IgnoreURL(url)) {
return true;
}
can_save_cookie_ct_++;
// Called after the successful URL1 network request.
@@ -2054,9 +2064,12 @@ class CookieRestartTestHandler : public RoutingTestHandler,
CefRefPtr<CefRequest> request,
CefRefPtr<CefCallback> callback) override {
EXPECT_IO_THREAD();
before_resource_load_ct_++;
const std::string& url = request->GetURL();
if (IgnoreURL(url)) {
return RV_CONTINUE;
}
before_resource_load_ct_++;
if (before_resource_load_ct_ <= 2) {
EXPECT_STREQ(GetCookieAccessUrl1(scheme_, true).c_str(), url.c_str());
@@ -2086,9 +2099,13 @@ class CookieRestartTestHandler : public RoutingTestHandler,
CefRefPtr<CefRequest> request,
CefRefPtr<CefResponse> response) override {
EXPECT_IO_THREAD();
const std::string& url = request->GetURL();
if (IgnoreURL(url)) {
return false;
}
resource_response_ct_++;
const std::string& url = request->GetURL();
const std::string& set_cookie_str = response->GetHeaderByName("Set-Cookie");
// Expect the network cookie with URL1 requests only.