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

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

Issue 1893553002: FIx static initializers from r387516. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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_local_gatt_characteristic_bluez.h" 5 #include "device/bluetooth/bluetooth_local_gatt_characteristic_bluez.h"
6 6
7 #include <iostream>
8 #include <string> 7 #include <string>
9 8
10 #include "base/callback_forward.h" 9 #include "base/callback_forward.h"
11 #include "base/logging.h" 10 #include "base/logging.h"
12 #include "device/bluetooth/bluetooth_gatt_characteristic.h" 11 #include "device/bluetooth/bluetooth_gatt_characteristic.h"
13 #include "device/bluetooth/bluetooth_gatt_descriptor.h" 12 #include "device/bluetooth/bluetooth_gatt_descriptor.h"
14 #include "device/bluetooth/bluetooth_local_gatt_service_bluez.h" 13 #include "device/bluetooth/bluetooth_local_gatt_service_bluez.h"
15 14
16 namespace bluez { 15 namespace bluez {
17 16
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 81
83 void BluetoothLocalGattCharacteristicBlueZ::WriteRemoteCharacteristic( 82 void BluetoothLocalGattCharacteristicBlueZ::WriteRemoteCharacteristic(
84 const std::vector<uint8_t>& new_value, 83 const std::vector<uint8_t>& new_value,
85 const base::Closure& callback, 84 const base::Closure& callback,
86 const ErrorCallback& error_callback) { 85 const ErrorCallback& error_callback) {
87 // Doesn't apply for a local characteristic. 86 // Doesn't apply for a local characteristic.
88 NOTIMPLEMENTED(); 87 NOTIMPLEMENTED();
89 } 88 }
90 89
91 } // namespace bluez 90 } // namespace bluez
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_gatt_descriptor_bluez.cc ('k') | device/bluetooth/bluetooth_local_gatt_service_bluez.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698