 Chromium Code Reviews
 Chromium Code Reviews Issue 1211013005:
  Added class BluetoothDeviceMac, returns mac device timing data  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@pre-hash
    
  
    Issue 1211013005:
  Added class BluetoothDeviceMac, returns mac device timing data  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@pre-hash| OLD | NEW | 
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_MAC_H_ | |
| 6 #define DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_MAC_H_ | |
| 7 | |
| 8 #include "device/bluetooth/bluetooth_device.h" | |
| 9 | |
| 10 @class NSDate; | |
| 11 | |
| 12 namespace device { | |
| 13 | |
| 14 class BluetoothDeviceMac : public BluetoothDevice { | |
| 15 public: | |
| 16 // Returns the time of the most recent interaction with the device. Returns | |
| 17 // nil if the device has never been seen. | |
| 18 virtual NSDate* GetLastUpdateTime() const = 0; | |
| 19 | |
| 20 protected: | |
| 21 BluetoothDeviceMac(); | |
| 
scheib
2015/06/30 16:58:18
I'm presuming the chrome compile or presubmit tool
 
krstnmnlsn
2015/06/30 17:39:11
Tried to avoid it as well.  But the compiler compl
 | |
| 22 ~BluetoothDeviceMac() override; | |
| 
armansito
2015/06/30 20:44:39
The destructor should probably be public.
 
krstnmnlsn
2015/07/01 17:37:16
Done.  Can you tell me what the thinking is?
 | |
| 23 | |
| 24 DISALLOW_COPY_AND_ASSIGN(BluetoothDeviceMac); | |
| 25 }; | |
| 26 | |
| 27 } // namespace device | |
| 28 | |
| 29 #endif // DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_MAC_H_ | |
| OLD | NEW |