|
|
|
@ -362,3 +362,57 @@ diff -up chromium-116.0.5845.50/chrome/browser/ui/omnibox/chrome_omnibox_client.
|
|
|
|
|
|
|
|
|
|
if (browser_) {
|
|
|
|
|
auto navigation = chrome::OpenCurrentURL(browser_);
|
|
|
|
|
diff -up chromium-117.0.5938.62/net/dns/host_resolver_cache.cc.me chromium-117.0.5938.62/net/dns/host_resolver_cache.cc
|
|
|
|
|
diff -up chromium-117.0.5938.62/third_party/blink/renderer/platform/fonts/font_palette.h.me chromium-117.0.5938.62/third_party/blink/renderer/platform/fonts/font_palette.h
|
|
|
|
|
--- chromium-117.0.5938.62/third_party/blink/renderer/platform/fonts/font_palette.h.me 2023-09-15 10:48:41.330294241 +0200
|
|
|
|
|
+++ chromium-117.0.5938.62/third_party/blink/renderer/platform/fonts/font_palette.h 2023-09-15 10:51:24.501324416 +0200
|
|
|
|
|
@@ -96,7 +96,7 @@ class PLATFORM_EXPORT FontPalette : publ
|
|
|
|
|
Color::ColorSpace color_interpolation_space,
|
|
|
|
|
absl::optional<Color::HueInterpolationMethod> hue_interpolation_method) {
|
|
|
|
|
return base::AdoptRef(new FontPalette(
|
|
|
|
|
- start, end, NonNormalizedPercentages(start_percentage, end_percentage),
|
|
|
|
|
+ start, end, NonNormalizedPercentages{start_percentage, end_percentage},
|
|
|
|
|
normalized_percentage, alpha_multiplier, color_interpolation_space,
|
|
|
|
|
hue_interpolation_method));
|
|
|
|
|
}
|
|
|
|
|
@@ -170,7 +170,7 @@ class PLATFORM_EXPORT FontPalette : publ
|
|
|
|
|
double normalized_percentage) {
|
|
|
|
|
double end_percentage = normalized_percentage * 100.0;
|
|
|
|
|
double start_percentage = 100.0 - end_percentage;
|
|
|
|
|
- return NonNormalizedPercentages(start_percentage, end_percentage);
|
|
|
|
|
+ return NonNormalizedPercentages{start_percentage, end_percentage};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double GetAlphaMultiplier() const {
|
|
|
|
|
diff -up chromium-117.0.5938.62/content/browser/renderer_host/render_frame_host_impl.cc.me chromium-117.0.5938.62/content/browser/renderer_host/render_frame_host_impl.cc
|
|
|
|
|
--- chromium-117.0.5938.62/content/browser/renderer_host/render_frame_host_impl.cc.me 2023-09-15 12:17:35.664861257 +0200
|
|
|
|
|
+++ chromium-117.0.5938.62/content/browser/renderer_host/render_frame_host_impl.cc 2023-09-15 12:21:06.112694256 +0200
|
|
|
|
|
@@ -8509,7 +8509,7 @@ void RenderFrameHostImpl::SendFencedFram
|
|
|
|
|
for (const blink::FencedFrame::ReportingDestination& destination :
|
|
|
|
|
destinations) {
|
|
|
|
|
SendFencedFrameReportingBeaconInternal(
|
|
|
|
|
- DestinationEnumEvent(event_type, event_data), destination,
|
|
|
|
|
+ DestinationEnumEvent{event_type, event_data}, destination,
|
|
|
|
|
/*from_renderer=*/true, attribution_reporting_runtime_features,
|
|
|
|
|
GetFrameTreeNodeId());
|
|
|
|
|
}
|
|
|
|
|
@@ -8545,7 +8545,7 @@ void RenderFrameHostImpl::SendFencedFram
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SendFencedFrameReportingBeaconInternal(
|
|
|
|
|
- DestinationURLEvent(destination_url),
|
|
|
|
|
+ DestinationURLEvent{destination_url},
|
|
|
|
|
blink::FencedFrame::ReportingDestination::kBuyer,
|
|
|
|
|
/*from_renderer=*/true, attribution_reporting_runtime_features,
|
|
|
|
|
GetFrameTreeNodeId());
|
|
|
|
|
@@ -8617,8 +8617,8 @@ void RenderFrameHostImpl::MaybeSendFence
|
|
|
|
|
for (blink::FencedFrame::ReportingDestination destination :
|
|
|
|
|
info->destinations) {
|
|
|
|
|
initiator_rfh->SendFencedFrameReportingBeaconInternal(
|
|
|
|
|
- DestinationEnumEvent(blink::kFencedFrameTopNavigationBeaconType,
|
|
|
|
|
- info->data),
|
|
|
|
|
+ DestinationEnumEvent{blink::kFencedFrameTopNavigationBeaconType,
|
|
|
|
|
+ info->data},
|
|
|
|
|
destination,
|
|
|
|
|
/*from_renderer=*/false, info->attribution_reporting_runtime_features,
|
|
|
|
|
GetFrameTreeNodeId(), navigation_request.GetNavigationId());
|