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

Side by Side Diff: device/bluetooth/bluetooth_remote_gatt_descriptor_android.cc

Issue 2051333004: Implement BluetoothGattNotifySession::Stop on Android, 2nd attempt (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address new review comments Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "device/bluetooth/bluetooth_remote_gatt_descriptor_android.h" 5 #include "device/bluetooth/bluetooth_remote_gatt_descriptor_android.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "base/android/jni_android.h" 9 #include "base/android/jni_android.h"
10 #include "base/android/jni_array.h" 10 #include "base/android/jni_array.h"
11 #include "base/android/jni_string.h" 11 #include "base/android/jni_string.h"
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/location.h" 13 #include "base/location.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "base/single_thread_task_runner.h" 15 #include "base/single_thread_task_runner.h"
16 #include "base/threading/thread_task_runner_handle.h" 16 #include "base/threading/thread_task_runner_handle.h"
17 #include "device/bluetooth/bluetooth_gatt_notify_session_android.h"
18 #include "device/bluetooth/bluetooth_remote_gatt_service_android.h" 17 #include "device/bluetooth/bluetooth_remote_gatt_service_android.h"
19 #include "jni/ChromeBluetoothRemoteGattDescriptor_jni.h" 18 #include "jni/ChromeBluetoothRemoteGattDescriptor_jni.h"
20 19
21 using base::android::AttachCurrentThread; 20 using base::android::AttachCurrentThread;
22 using base::android::JavaParamRef; 21 using base::android::JavaParamRef;
23 22
24 namespace device { 23 namespace device {
25 24
26 // static 25 // static
27 std::unique_ptr<BluetoothRemoteGattDescriptorAndroid> 26 std::unique_ptr<BluetoothRemoteGattDescriptorAndroid>
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 write_error_callback.Run( 180 write_error_callback.Run(
182 BluetoothRemoteGattServiceAndroid::GetGattErrorCode(status)); 181 BluetoothRemoteGattServiceAndroid::GetGattErrorCode(status));
183 } 182 }
184 } 183 }
185 184
186 BluetoothRemoteGattDescriptorAndroid::BluetoothRemoteGattDescriptorAndroid( 185 BluetoothRemoteGattDescriptorAndroid::BluetoothRemoteGattDescriptorAndroid(
187 const std::string& instance_id) 186 const std::string& instance_id)
188 : instance_id_(instance_id) {} 187 : instance_id_(instance_id) {}
189 188
190 } // namespace device 189 } // namespace device
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_remote_gatt_characteristic_win.cc ('k') | device/bluetooth/bluetooth_remote_gatt_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698