Sophie

Sophie

distrib > Mageia > 8 > armv7hl > by-pkgid > 892c2a99310cc8e4a9df22541a46aeb2 > files > 41

chromium-browser-stable-88.0.4324.182-1.mga8.src.rpm

--- chromium-73.0.3683.75/components/download/internal/common/download_item_impl.cc.gcc8-5	2019-03-17 16:29:19.104259012 +0100
+++ chromium-73.0.3683.75/components/download/internal/common/download_item_impl.cc	2019-03-17 20:25:57.404313744 +0100
@@ -642,7 +642,7 @@ void DownloadItemImpl::UpdateResumptionI
     bytes_wasted_ = 0;
   }
 
-  auto_resume_count_ = user_resume ? 0 : ++auto_resume_count_;
+  auto_resume_count_ = user_resume ? 0 : auto_resume_count_+1;
   download_schedule_ = base::nullopt;
   RecordDownloadLaterEvent(DownloadLaterEvent::kScheduleRemoved);
 }
--- chromium-73.0.3683.75/third_party/blink/renderer/platform/fonts/opentype/open_type_caps_support.cc.gcc8	2019-03-11 23:01:04.000000000 +0100
+++ chromium-73.0.3683.75/third_party/blink/renderer/platform/fonts/opentype/open_type_caps_support.cc	2019-03-18 22:35:49.814430618 +0100
@@ -152,8 +152,8 @@ OpenTypeCapsSupport::FontFormat OpenType
                             hb_blob_get_length(mort_blob.get());
     bool has_gsub = hb_ot_layout_has_substitution(hb_face);
     font_format_ = has_morx_or_mort&& !has_gsub
-                       ? font_format_ = FontFormat::kAat
-                       : font_format_ = FontFormat::kOpenType;
+                       ? FontFormat::kAat
+                       : FontFormat::kOpenType;
   }
   return font_format_;
 }
--- chromium-74.0.3729.40/third_party/blink/renderer/modules/animationworklet/animation_worklet_proxy_client.cc.gcc8	2019-03-27 19:50:26.000000000 +0100
+++ chromium-74.0.3729.40/third_party/blink/renderer/modules/animationworklet/animation_worklet_proxy_client.cc	2019-03-31 22:58:52.566976070 +0200
@@ -185,7 +185,7 @@ AnimationWorkletProxyClient::SelectGloba
   if (--next_global_scope_switch_countdown_ < 0) {
     int last_global_scope_index = current_global_scope_index_;
     current_global_scope_index_ =
-        (++current_global_scope_index_ % global_scopes_.size());
+        ((current_global_scope_index_ + 1) % global_scopes_.size());
     global_scopes_[last_global_scope_index]->MigrateAnimatorsTo(
         global_scopes_[current_global_scope_index_]);
     // Introduce an element of randomness in the switching interval to make
--- chromium-75.0.3766.2/chrome/browser/notifications/scheduler/internal/impression_history_tracker.cc.gcc8	2019-04-16 03:13:59.000000000 +0200
+++ chromium-75.0.3766.2/chrome/browser/notifications/scheduler/internal/impression_history_tracker.cc	2019-04-21 10:17:31.053438403 +0200
@@ -110,7 +110,7 @@ void ImpressionHistoryTrackerImpl::Apply
 
   // Increase |current_max_daily_show| by 1.
   client_state->current_max_daily_show =
-      base::ClampToRange(++client_state->current_max_daily_show, 0,
+      base::ClampToRange(client_state->current_max_daily_show + 1, 0,
                          config_.max_daily_shown_per_type);
 }
 
--- chromium-78.0.3904.9/third_party/blink/renderer/platform/geometry/calculation_value.cc.gcc9	2019-09-12 05:03:06.000000000 +0200
+++ chromium-78.0.3904.9/third_party/blink/renderer/platform/geometry/calculation_value.cc	2019-09-15 13:46:22.767390268 +0200
@@ -45,8 +45,8 @@ CalculationValue::~CalculationValue() {
 }
 
 float CalculationValue::Evaluate(float max_value) const {
-  float value = is_expression_ ? value = data_.expression->Evaluate(max_value)
-                               : value = Pixels() + Percent() / 100 * max_value;
+  float value = is_expression_ ? data_.expression->Evaluate(max_value)
+                               : Pixels() + Percent() / 100 * max_value;
   return (IsNonNegative() && value < 0) ? 0 : value;
 }
 
--- chromium-80.0.3987.78/ui/views/accessibility/view_ax_platform_node_delegate_auralinux.cc.gcc9	2020-01-29 22:39:19.000000000 +0100
+++ chromium-80.0.3987.78/ui/views/accessibility/view_ax_platform_node_delegate_auralinux.cc	2020-02-02 18:46:16.144392451 +0100
@@ -50,7 +50,7 @@ Widget* GetWidgetOfParentWindowIncluding
 // Return the toplevel widget ancestor of |widget|, including widgets of
 // parents of transient windows.
 Widget* GetToplevelWidgetIncludingTransientWindows(Widget* widget) {
-  widget = widget = widget->GetTopLevelWidget();
+  widget = widget->GetTopLevelWidget();
   if (Widget* parent_widget = GetWidgetOfParentWindowIncludingTransient(widget))
     return GetToplevelWidgetIncludingTransientWindows(parent_widget);
   return widget;
--- chromium-87.0.4280.40/third_party/blink/renderer/modules/payments/payment_request.cc.gcc10	2020-10-29 23:25:44.000000000 +0100
+++ chromium-87.0.4280.40/third_party/blink/renderer/modules/payments/payment_request.cc	2020-11-02 14:15:50.760036060 +0100
@@ -1491,7 +1491,7 @@ void PaymentRequest::OnError(PaymentErro
       break;
 
     case PaymentErrorReason::NOT_SUPPORTED:
-      exception_code = exception_code = DOMExceptionCode::kNotSupportedError;
+      exception_code = DOMExceptionCode::kNotSupportedError;
       break;
 
     case PaymentErrorReason::NOT_SUPPORTED_FOR_INVALID_ORIGIN_OR_SSL:
--- chromium-88.0.4324.41/content/browser/media/capture/web_contents_video_capture_device.cc.gcc10	2020-12-10 13:02:55.000000000 +0100
+++ chromium-88.0.4324.41/content/browser/media/capture/web_contents_video_capture_device.cc	2020-12-14 14:51:39.087835787 +0100
@@ -121,7 +121,7 @@ class WebContentsVideoCaptureDevice::Fra
       return nullptr;
     }
 
-    RenderWidgetHostView* view = view = contents->GetRenderWidgetHostView();
+    RenderWidgetHostView* view = contents->GetRenderWidgetHostView();
     // Make sure the RWHV is still associated with a RWH before considering the
     // view "alive." This is because a null RWH indicates the RWHV has had its
     // Destroy() method called.
--- chromium-88.0.4324.41/third_party/blink/renderer/core/layout/ng/ng_physical_box_fragment.cc.gcc10	2020-12-10 13:03:04.000000000 +0100
+++ chromium-88.0.4324.41/third_party/blink/renderer/core/layout/ng/ng_physical_box_fragment.cc	2020-12-14 15:53:37.452050338 +0100
@@ -808,7 +808,7 @@ PositionWithAffinity NGPhysicalBoxFragme
     return layout_object_->CreatePositionWithAffinity(0);
 
   const auto& child = To<NGPhysicalBoxFragment>(*closest_child);
-  Node* child_node = child_node = child.NonPseudoNode();
+  Node* child_node = child.NonPseudoNode();
   PhysicalOffset point_in_child = point - closest_child.offset;
   if (!child.IsCSSBox() || !child_node)
     return child.PositionForPoint(point_in_child);