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

Unified Diff: device/bluetooth/test/mock_bluetooth_gatt_notify_session.cc

Issue 2241263005: Revert of Implement BluetoothGattNotifySession::Stop on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/test/mock_bluetooth_gatt_notify_session.cc
diff --git a/device/bluetooth/test/mock_bluetooth_gatt_notify_session.cc b/device/bluetooth/test/mock_bluetooth_gatt_notify_session.cc
index 4123e2d342dbaaca59093d62c1ff4ac8538de20e..e4123f67741db1a75d06e85469e36288f1613452 100644
--- a/device/bluetooth/test/mock_bluetooth_gatt_notify_session.cc
+++ b/device/bluetooth/test/mock_bluetooth_gatt_notify_session.cc
@@ -11,8 +11,9 @@
namespace device {
MockBluetoothGattNotifySession::MockBluetoothGattNotifySession(
- base::WeakPtr<BluetoothRemoteGattCharacteristic> characteristic)
- : BluetoothGattNotifySession(characteristic) {
+ const std::string& characteristic_identifier) {
+ ON_CALL(*this, GetCharacteristicIdentifier())
+ .WillByDefault(Return(characteristic_identifier));
ON_CALL(*this, IsActive()).WillByDefault(Return(true));
}

Powered by Google App Engine
This is Rietveld 408576698