Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 657472 | Differences between
and this patch

Collapse All | Expand All

(-)chromium-68.0.3438.3/content/renderer/input/input_event_prediction.cc.orig (-1 / +2 lines)
Lines 119-125 Link Here
119
    if (predictor != pointer_id_predictor_map_.end()) {
119
    if (predictor != pointer_id_predictor_map_.end()) {
120
      predictor->second->Update(data);
120
      predictor->second->Update(data);
121
    } else {
121
    } else {
122
      pointer_id_predictor_map_.insert({event.id, SetUpPredictor()});
122
      auto pair = std::make_pair(event.id, SetUpPredictor());
123
      pointer_id_predictor_map_.insert(std::move(pair));
123
      pointer_id_predictor_map_[event.id]->Update(data);
124
      pointer_id_predictor_map_[event.id]->Update(data);
124
    }
125
    }
125
  }
126
  }
(-)chromium-68.0.3438.3/content/browser/background_fetch/background_fetch_context.cc.orig (-1 / +2 lines)
Lines 218-224 Link Here
218
218
219
  scheduler_->AddJobController(controller.get());
219
  scheduler_->AddJobController(controller.get());
220
220
221
  job_controllers_.insert({unique_id, std::move(controller)});
221
  auto pair = std::make_pair(unique_id, std::move(controller));
222
  job_controllers_.insert(std::move(pair));
222
  std::move(done_closure).Run();
223
  std::move(done_closure).Run();
223
}
224
}
224
225

Return to bug 657472