Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1195)

Unified Diff: device/bluetooth/bluetooth_low_energy_win.h

Issue 1995983002: Fix "unused variable" warnings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: device/bluetooth/bluetooth_low_energy_win.h
diff --git a/device/bluetooth/bluetooth_low_energy_win.h b/device/bluetooth/bluetooth_low_energy_win.h
index 9620c6fe540feb0d47a71ff18b9f2b1c2f59980c..65120a28265aa65ef59224bf185b8360957e1d16 100644
--- a/device/bluetooth/bluetooth_low_energy_win.h
+++ b/device/bluetooth/bluetooth_low_energy_win.h
@@ -41,12 +41,10 @@ class DEVICE_BLUETOOTH_EXPORT DeviceRegistryPropertyValue {
private:
DeviceRegistryPropertyValue(DWORD property_type,
- std::unique_ptr<uint8_t[]> value,
- size_t value_size);
+ std::unique_ptr<uint8_t[]> value);
DWORD property_type_;
std::unique_ptr<uint8_t[]> value_;
- size_t value_size_;
DISALLOW_COPY_AND_ASSIGN(DeviceRegistryPropertyValue);
};

Powered by Google App Engine
This is Rietveld 408576698