From 28b1110370900897ab652cb420c371fab8857ad4 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Mon, 1 Aug 2016 12:59:39 +0200 Subject: BASELINE: Update Chromium to 53.0.2785.41 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also adds a few extra files for extensions. Change-Id: Iccdd55d98660903331cf8b7b29188da781830af4 Reviewed-by: Michael BrĂ¼ning --- chromium/device/bluetooth/bluetooth_low_energy_win.cc | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'chromium/device/bluetooth/bluetooth_low_energy_win.cc') diff --git a/chromium/device/bluetooth/bluetooth_low_energy_win.cc b/chromium/device/bluetooth/bluetooth_low_energy_win.cc index 3ecf56fff90..b96277c1830 100644 --- a/chromium/device/bluetooth/bluetooth_low_energy_win.cc +++ b/chromium/device/bluetooth/bluetooth_low_energy_win.cc @@ -595,17 +595,14 @@ DeviceRegistryPropertyValue::Create(DWORD property_type, break; } } - return base::WrapUnique(new DeviceRegistryPropertyValue( - property_type, std::move(value), value_size)); + return base::WrapUnique( + new DeviceRegistryPropertyValue(property_type, std::move(value))); } DeviceRegistryPropertyValue::DeviceRegistryPropertyValue( DWORD property_type, - std::unique_ptr value, - size_t value_size) - : property_type_(property_type), - value_(std::move(value)), - value_size_(value_size) {} + std::unique_ptr value) + : property_type_(property_type), value_(std::move(value)) {} DeviceRegistryPropertyValue::~DeviceRegistryPropertyValue() { } -- cgit v1.2.1