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

Unified Diff: device/bluetooth/bluetooth_classic_device_mac.h

Issue 1220713006: Renaming BluetoothDeviceMac as BluetoothClassicDeviceMac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dm
Patch Set: learning alphabet Created 5 years, 6 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_classic_device_mac.h
diff --git a/device/bluetooth/bluetooth_device_mac.h b/device/bluetooth/bluetooth_classic_device_mac.h
similarity index 88%
rename from device/bluetooth/bluetooth_device_mac.h
rename to device/bluetooth/bluetooth_classic_device_mac.h
index daa8e4dc8b7673a39a67c69f8722cb296fa1206c..c0426ec6260b85cf19f20ead443d72d045176499 100644
--- a/device/bluetooth/bluetooth_device_mac.h
+++ b/device/bluetooth/bluetooth_classic_device_mac.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_MAC_H_
-#define DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_MAC_H_
+#ifndef DEVICE_BLUETOOTH_BLUETOOTH_CLASSIC_DEVICE_MAC_H_
+#define DEVICE_BLUETOOTH_BLUETOOTH_CLASSIC_DEVICE_MAC_H_
#import <IOBluetooth/IOBluetooth.h>
@@ -18,10 +18,10 @@
namespace device {
-class BluetoothDeviceMac : public BluetoothDevice {
+class BluetoothClassicDeviceMac : public BluetoothDevice {
public:
- explicit BluetoothDeviceMac(IOBluetoothDevice* device);
- ~BluetoothDeviceMac() override;
+ explicit BluetoothClassicDeviceMac(IOBluetoothDevice* device);
+ ~BluetoothClassicDeviceMac() override;
// BluetoothDevice override
uint32 GetBluetoothClass() const override;
@@ -86,9 +86,9 @@ class BluetoothDeviceMac : public BluetoothDevice {
base::scoped_nsobject<IOBluetoothDevice> device_;
- DISALLOW_COPY_AND_ASSIGN(BluetoothDeviceMac);
+ DISALLOW_COPY_AND_ASSIGN(BluetoothClassicDeviceMac);
};
} // namespace device
-#endif // DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_MAC_H_
+#endif // DEVICE_BLUETOOTH_BLUETOOTH_CLASSIC_DEVICE_MAC_H_

Powered by Google App Engine
This is Rietveld 408576698